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

基元类型

时间:2014-10-12 22:00:28      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:ar   sp   div   on   时间   bs   ui   har   rgb   

 // 基元类型

 
        // 1.布尔型
        bool a1 = true;// true、false,例如男女
 
        // 2.整数类型
        byte a2 = 0;// 0-255,颜色RGB,年龄,一个字节
        sbyte a3 = 0;// -128到127
        short a4 = 0;// -2^15到2^15,2个字节
        ushort a5 = 0;// 0到2^16
        int a6 = 0;// 4个字节
        uint a7 = 0;
        long a8 = 0;// 8字节
        ulong a9 = 0;
 
        // 浮点类型,实数类型
        float b1 = 0;// 4个字节
        double b2 = 0;// 8个字节
        decimal b3 = 0;
 
        // 字符类型
        string s1 = "你好啊";// 字符串
        char s2 = ‘你‘;// 字符
 
        // 类型
        DateTime d1 = DateTime.Now;//年、月、日、时、分、秒、毫秒
        TimeSpan d2 = TimeSpan.FromDays(0);//时间段

基元类型

标签:ar   sp   div   on   时间   bs   ui   har   rgb   

原文地址:http://www.cnblogs.com/wolfdeer/p/4020938.html

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