码迷,mamicode.com
首页 > 其他好文 > 详细

checked和unchecked的区别

时间:2014-08-12 18:40:04      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   使用   os   io   2014   

int类型的最大值是2147483647,2个最大值相加就会超出int的最大值,即出现溢出。

    class Program
    {
        static void Main(string[] args)
        {
            int y = 2147483647;
            int x = 2147483647;
            int z = x + y;
            Console.WriteLine(z.ToString());
            Console.ReadKey();
        }
    }

把断点打在 int z = x + y;代码行,单步调试,可以看到z的值为-2。因为int类型的最大值是2147483647,x + y超出了最大值,出现了溢出。
bubuko.com,布布扣

 

□ 使用checked

如果我们想让编译器帮我们判断是否溢出,就使用checked关键字。

    class Program
    {
        static void Main(string[] args)
        {
            int y = 2147483647;
            int x = 2147483647;
            int z = checked(x + y);
        }
    }

运行,抛出溢出异常:   
bubuko.com,布布扣

 

如果我们想手动捕获并打印异常,应该这样写:

    class Program
    {
        static void Main(string[] args)
        {
            int y = 2147483647;
            int x = 2147483647;
            try
            {
                int z = checked(x + y);
            }
            catch (OverflowException ex)
            {
                Console.WriteLine(ex.Message);
            }
            Console.ReadKey();
        }
    }

运行,
bubuko.com,布布扣

 

□ 使用unchecked   

使用unchecked不会抛出溢出异常。

    class Program
    {
        static void Main(string[] args)
        {
            int y = 2147483647;
            int x = 2147483647;
            int z = unchecked(x + y);
            Console.WriteLine(z.ToString());
            Console.ReadKey();
        }
    }

结果为:-2

 

总结:checked关键字用来检查、捕获溢出异常,unchecked关键字用来忽略溢出异常。

checked和unchecked的区别,布布扣,bubuko.com

checked和unchecked的区别

标签:style   blog   http   color   使用   os   io   2014   

原文地址:http://www.cnblogs.com/darrenji/p/3907782.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!