QQ登录

只需要一步,快速开始

APP扫码登录

只需要一步,快速开始

查看: 2348|回复: 0

[C#/.NET] 检查集合是否为空

[复制链接]

等级头衔

积分成就    金币 : 2861
   泡泡 : 1516
   精华 : 6
   在线时间 : 1322 小时
   最后登录 : 2025-11-29

丰功伟绩

优秀达人突出贡献荣誉管理论坛元老活跃会员

联系方式
发表于 2022-10-15 11:49:57 | 显示全部楼层 |阅读模式
一、概述$ N5 c: G1 n% _1 q7 [+ z/ H/ @" V& u
       当一个集合作为入参传入另外一个方法时,我们首先需要判空处理,以免在空集合上处理引发异常,判空处理的方式有多种,下面就来一一列举.
, }  r5 a3 D( r( h/ I! f二、是否为 null
2 {6 x$ G$ I" }/ M% p* f       如果一个集合没有实例化,那集合就是null,判null的常用以下几种方式:- y/ A; [* t$ E" n3 v
方式一:== null% O0 W$ n& ^6 ^$ r* }$ v1 r1 M
class Program
    {
        static List<Student> stuList;
        static void Main(string[] args)
        {
            if (stuList == null)
            {
                Console.WriteLine("stuList is null");
            }
            Console.ReadKey();
        }
    }

    public class Student
    {
        public string Name { get; set; }
        public int Age { get; set; }
    }
1.jpg : `9 A8 u9 n4 ^5 @) m
方式二:is null; y. I3 C" ~- L, l
if (stuList is null)
三、是否为空: \5 o7 c0 C: e4 W: R& g/ [
       在上面我们先判断了集合不为null以后,如果还需要检查集合是否有元素,也是有多种方式可以实现:
2 V' d" a- k: d2 p3 y4 P' a' o方式一:stuList.Count == 0
: a5 V6 G: |# h5 o* Z" S
if (stuList.Count == 0)
            {
                Console.WriteLine("stuList is empty");
            }
2.jpg
2 r; C! C8 r6 I, n3 \方式二:!stuList.Any()   //     确定序列是否包含任何元素。3 B8 `4 i8 y& m1 r
// 返回结果:
/ d* X4 f/ w9 F. M# j. J/ g$ g// true 如果源序列中不包含任何元素,则否则为 false。+ U0 X+ M9 N/ {$ q+ x" p
if (!stuList.Any())
            {
                Console.WriteLine("stuList is empty");
            }
      那如果我既想检查他是否为null又想检查是否为null,有没有简洁点的语法呢?这时候我们就可以用 ?. 来操作了。/ e* r( D: [9 u9 G& \$ i
实例如下:
class Program
    {
        static List<Student> stuList = new List<Student>();
        static void Main(string[] args)
        {
            //if (stuList is null)
            //{
            //    Console.WriteLine("stuList is null");
            //    throw new Exception("stuList is null");
            //}

            //if (!stuList.Any())
            //{
            //    Console.WriteLine("stuList is empty");
            //}

            stuList.Add(new Student() { Name = "zls",Age = 25});
            if (stuList?.Count != 0)
            {
                Console.WriteLine("StuList is neither null nor empty");
            }

            Console.ReadKey();
        }
    }

    public class Student
    {
        public string Name { get; set; }
        public int Age { get; set; }
    }
3.jpg
% j) T4 ~& }% C       这样就可以保证stuList为null的时候获取集合的数量也不会引发异常。
; s4 B# T7 c) R6 K3 B
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|手机版|小黑屋|paopaomj.COM ( 渝ICP备18007172号|渝公网安备50010502503914号 )

GMT+8, 2026-1-7 08:33

Powered by paopaomj X3.5 © 2016-2025 sitemap

快速回复 返回顶部 返回列表