2005年11月12日
摘要: bool true或false byte 8位无符号整数 short 16位整数 int 32位整数 long 64位整数 float 32位浮点数 double 64位浮点数 char 16位字符 string 多个16位字符 宽度窄的(即字节数少的)数据类型可以直接赋给较宽的数据类型,并会自动转换为新类型。例: float a = 9.9f; int b=4; a = b; //上述把一个整型... 阅读全文
posted @ 2005-11-12 13:03 龚祺 阅读(4646) 评论(1) 推荐(0) 编辑