码迷,mamicode.com
首页 > Windows程序 > 详细

C#3

时间:2016-11-09 19:31:17      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:显示类型转换   其他   初始化   read   strong   ons   类型   字符   bsp   

定义常量:1.静态常量 const(定义时必须初始化)  、、、常量都不可以改变

              2.动态常量 readonly(定义时不必初始化) \\要在Main方法前面

用法:const double PI = 3.14       readonly double PI = 3.14

 

类型转换:隐式类型转换:低精度会自动转换为高精度 如int转为double

             显示类型转换:double a=10; int c = (int)a;

                                 或 int c = Convert.ToInt32(a);

                                或 int c = Int.Parse(a.ToString());  因为Parse 用于字符转为其他类型

C#3

标签:显示类型转换   其他   初始化   read   strong   ons   类型   字符   bsp   

原文地址:http://www.cnblogs.com/wshyj/p/6048044.html

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