body, table{font-family: 微软雅黑; font-size: 10pt}
table{border-collapse: collapse; border: solid gray; border-width: 2px 0 2px 0;}
th{border: 1px solid gray; padding: 4px; background-color: #DDD;}
td{border: 1px solid gray; padding: 4px;}
tr:nth-child(2n){background-color: #f8f8f8;}
Java语言发展史:
Java Development Kit 1.0.2 1.1.1 -> 1.1.6 -> 1.1.7 -> 1.1.8 1.2.1 Java 2 SDK 1.2.2 1.3.0 -> 1.3.1 1.4.0 -> 1.4.1 ->1.4.2 ->1.5.0(5.0) ->1.6.0(6.0) ->1.7.0(7.0) jdk8 |
每个java文件中,只能有一个public的类,而且该类必须和当前文件名一致
int i=7; String str = i + ""; str=7;
Ctrl+Shift+f 自动代码对其
Eclipse中设置在创建新类时自动生成注释
windows-->preference-->java-->Code Style--> Code Templates-->code-->new Java files 编辑它 | test.java |
${filecomment} ${package_declaration} /** * @author 作者 E-mail: * @version 创建时间:${date} ${time} * 类说明 */ ${typecomment} ${type_declaration} | /** *@author: meihao *@create_time: 2017年3月27日 下午5:37:59 *@class description: */ public class test { public static void main(String[] args) { } } |
eclipse 关联源码:窗口---》首选项---》java---》已安装的JRE--->选中jre1.8.0_121然后右边选择编辑---》选中以rt.jar结尾的文件,右边选中源代码附件---》External location ---> 选中java安装目录下的JDK下的src.zip
05-11 11:19