CLR-基元类型以及溢出检查

基元类型(primitive type):

基元类型也不做过多的解释,举个例子即可清晰的辨别

在java里曾使用过Sting s="java"; 定义字符串,然后就会觉得很诧异,为啥是大写开头,我写C#,一直都是 string ,int ,double,float等等小写开头,这时候,来了解基元类型方可解惑。

1 int a=0; 2 System.Int32 a=0; 3 int a=new int(); 4 System.Int32 a=new System.Int32();

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zyfzsg.html