<21天学通C#>使用unchecked使得命令编辑器不对代码进行检查,使用checked对代码进行检查
2021-07-02 10:06
标签:编辑器 key com name console ima .text alt 使用 using System; namespace 使用unchecked使得命令编辑器不对代码进行检查 改为checked: using System; namespace 使用unchecked使得命令编辑器不对代码进行检查 使用unchecked使得命令编辑器不对代码进行检查,使用checked对代码进行检查 标签:编辑器 key com name console ima .text alt 使用 原文地址:https://www.cnblogs.com/nnty/p/9929050.html
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
{
class Program
{
static void Main(string[] args)
{
int val1 = 2147483647;
int val2 ;
unchecked
{
val2 = val1 + 1;
}
Console.WriteLine("val1 is {0}", val1);
Console.WriteLine("val2 is {0}", val2);
Console.WriteLine("按任意键退出");
Console.ReadKey();
}
}
}
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
{
class Program
{
static void Main(string[] args)
{
int val1 = 2147483647;
int val2 ;
checked
{
val2 = val1 + 1;
}
Console.WriteLine("val1 is {0}", val1);
Console.WriteLine("val2 is {0}", val2);
Console.WriteLine("按任意键退出");
Console.ReadKey();
}
}
}
上一篇:SDWebImage
文章标题:<21天学通C#>使用unchecked使得命令编辑器不对代码进行检查,使用checked对代码进行检查
文章链接:http://soscw.com/index.php/essay/100733.html