摘要: C# this指针的几种用法1、限定被相似的名称隐藏的成员C# 代码 复制public class ThisName { public string name = "张三"; public int num = 55; public ThisName() { } ... 阅读全文
posted @ 2015-11-03 21:24 BestKiller 阅读(257) 评论(0) 推荐(0) 编辑
摘要: 对于简单的数组,只有固定的大小来初始化数组,才能使用它。 Animal [] animalArray = new Animal[2];而ArrayList集合不需要初始化大小 ArrayList animalArrayList= new ArrayList();这两家伙初始化也不同,大概是这样:... 阅读全文
posted @ 2015-11-03 15:21 BestKiller 阅读(605) 评论(0) 推荐(0) 编辑