2011年7月15日

c# 数据类型占用的字节数(转)

摘要: bool -> System.Boolean (布尔型,其值为 true 或者 false)byte -> System.Byte (字节型,占 1 字节,表示 8 位正整数,范围 0 ~ 255)sbyte -> System.SByte (带符号字节型,占 1 字节,表示 8 位整数,范围 -128 ~ 127)char -> System.Char (字符型,占有两个字节,表示 1 个 Unicode 字符)short -> System.Int16 (短整型,占 2 字节,表示 16 位整数,范围 -32,768 ~ 32,767)ushort -> 阅读全文

posted @ 2011-07-15 15:16 xcopys 阅读(493) 评论(0) 推荐(0) 编辑

Java 集合类(转)

摘要: 集合类说明及区别Collection├List│├LinkedList│├ArrayList│└Vector│ └Stack└Set Map├Hashtable├HashMap└WeakHashMapCollection接口 Collection是最基本的集合接口,一个Collection代表一组Object,即Collection的元素(Elements)。一些Collection允许相同的元素而另一些不行。一些能排序而另一些不行。Java SDK不提供直接继承自Collection的类,Java SDK提供的类都是继承自Collection的“子接口”如List和Set。所有实现Colle 阅读全文

posted @ 2011-07-15 13:34 xcopys 阅读(107) 评论(0) 推荐(0) 编辑

导航