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

checked,unchecked

时间:2016-06-04 00:28:03      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:

static void Main(string[] args)
{
byte b1 = 100;
byte b2 = 250;
//Checked
try
{
byte sum = checked ((byte) Add(b1, b2));
Console.WriteLine(sum);
Console.ReadLine();
}
catch (OverflowException Ex)
{
Console.WriteLine(Ex.Message);
}
}

static int Add(int x, int y)
{
return x + y;
}

 

unchecked

{

byte sum=(byte)(100+200);

Console.WriteLine(sum);

}

 

算术运算导致溢出。

checked,unchecked

标签:

原文地址:http://www.cnblogs.com/Fred1987/p/5557877.html

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