05 2007 档案
摘要:1. Click on Start and Run and type in the exact string as below in one single line: reg.exe DELETE HKEY_CURRENT_USER\Software\Microsoft\MSNMessenger\Policies /va2. Hit Enter. 3. Press on "Y" to confir...
阅读全文
摘要:一切皆是对象,接口也是对象吗?
如何证明接口也是对象呢.
阅读全文
摘要:今天无意中翻到chengbo的一篇面试随笔: 面试新蛋题目看成了:如下代码能否编译成功 public int this[int index] { get { return 1; } } public int get_Item(int index) ...
阅读全文
摘要:从统揽全局的角度上对两种语言及各自在对应平台上的实现进行了完整的论述文章地址:论C#与Java之异同
阅读全文
摘要:ArrayList & List (1) 里讲到: ArrayList底层用的数据对象就是一组Object的Array,提供了一个List功能的接口. ArrayList.InsertRange(int index, ICollection c) 和 List.InsertRange(int index, IEnumerable collection) 方法参数类型的改变和实现方式.
这篇继续探讨同步的List和ArrayList搞笑的GetRange()方法
阅读全文
摘要:ArrayList底层用的数据对象就是一组Object的 Array,提供了一个List功能的接口.
ArrayList.InsertRange(int index, ICollection c) 和 List.InsertRange(int index, IEnumerable collection) 方法参数了类型的改变和实现方式
阅读全文