摘要:
java:写课后作业 离散数学:等价关系与等价类 数据结构:二叉树 阅读全文
摘要:
探索技术的奥秘 此示例中定义了一个类A,它没有任何成员: class A { } 示例直接输出这个类所创建的对象 public static void main(String[] args) { System.out.println(new A()); } public class Explorat 阅读全文
摘要:
动手实验:继承条件下的构造方法调用 class Grandparent { public Grandparent() { System.out.println("GrandParent Created."); } public Grandparent(String string) { System. 阅读全文