摘要:
1 #include "stdio.h" 2 #include "stdlib.h" 3 #include "string.h" 4 typedef char DataType; 5 typedef struct BinTree{ 6 DataType key; //数据存放 7 struct BinTree *left; //左孩子 8 s... 阅读全文
posted @ 2019-05-27 12:00
oops_w
阅读(369)
评论(0)
推荐(0)
摘要:
通过以上题目明白了以下几点: 1.一个java文件中可以没有一个public Class 可以直接用Class。 2.在子类调用无参数构造方法时,会先去调用父类的无参数构造方法。 阅读全文
posted @ 2019-05-27 00:33
oops_w
阅读(116)
评论(0)
推荐(0)
摘要:
以下是开启JavaScirpt和关闭JavaScirpt功能时候的效果 阅读全文
posted @ 2019-05-27 00:23
oops_w
阅读(1348)
评论(0)
推荐(0)