摘要: Map.Entry是Map声明的一个内部接口,此接口为泛型,定义为Entry<K,V>。它表示Map中的一个实体(一个key-value对)。 public String toString() { StringBuilder result = new StringBuilder("{"); for( 阅读全文
posted @ 2020-09-17 19:28 模糊计算士 阅读(771) 评论(0) 推荐(0) 编辑
摘要: 见教材P42 cursor.h typedef int ElementType; #define SpaceSize 100 /* START: fig3_28.txt */ // 链表游标实现的声明 #ifndef _Cursor_H #define _Cursor_H typedef int P 阅读全文
posted @ 2020-09-17 18:51 模糊计算士 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 在阅读书中示例代码的过程中,发现一个被弃用的方法 newInstance() 替代方法:getDeclatedConstructor().newInstance() //: typeinfo/toys/ToyTest.java // Testing class Class. package com. 阅读全文
posted @ 2020-09-17 13:41 模糊计算士 阅读(3398) 评论(0) 推荐(0) 编辑