首页 > 代码库 > checked、is、as、sizeof、typeof运算符

checked、is、as、sizeof、typeof运算符

 //--------------------------------checked防止溢出
            byte b = 255;
            checked
            {
                b++;
            }
            Console.WriteLine(b.ToString());//byte类型只包含0~255,加上checked所以会抛出异常

            //is运算符,检查对象是否与特定的类型兼容
            int i = 0;
            Console.WriteLine(i is object);//True

            //--------------------------------as运算符,显示转换特定的类型
            object o = "123";
            string s = o as string;
            Console.WriteLine(s);

            //--------------------------------sizeof运算符,可以确定栈中值类型的长度
            Console.WriteLine(sizeof(int));//输出4


            //--------------------------------typeof运算符,返回一个特定类型的System.Type对象
            Console.WriteLine(typeof(string));//输出System.String
           
            Console.ReadKey();

本文出自 “程序猿的家” 博客,请务必保留此出处http://962410314.blog.51cto.com/7563109/1531801