2018年1月4日
摘要: 数据类型包括值类型和引用类型 值类型讲数值保存在堆当中 引用类型将值保存在栈中,在堆中保存地址 整数类型细分为八类(节约内存): byte(8位) System.Byte sbyte System.Sbyte short(16位) System.Int16 ushort System.uint16 阅读全文
posted @ 2018-01-04 14:06 song.yan 阅读(178) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace test2 { class Program { static void Main(string[] args) { char a=... 阅读全文
posted @ 2018-01-04 11:24 song.yan 阅读(214) 评论(0) 推荐(0)