摘要: 1 (1)面向对象的语言具有__继承性_性、_封装性_性、_多态性 性。 (2)能用foreach遍历访问的对象需要实现 _ IEnumerable 接口或声明_ GetEnumerator 方法的类型。1.c#中的三元运算符是__?:__ 2.当整数a赋值给一个object对象时,整数a将会被__装箱___? 3.类成员有__3__种可访问形式? 4.public static const in... 阅读全文
posted @ 2008-10-23 11:39 TONYBINLJ 阅读(267) 评论(0) 推荐(0) 编辑
摘要: public int Search(int[] array, int key) { int low = 0; int high = array.Length; int middle; while (low <= high) { middle=(low+high)/2; ... 阅读全文
posted @ 2008-10-23 10:57 TONYBINLJ 阅读(225) 评论(0) 推荐(0) 编辑