标签:blog http ar java sp 文件 div 2014 log
安装完jdk环境后,编写第一个java程序:
public class hello{ public static void main (String args []){ System.out.println("hello world!"); } }
编译完之后会出现class文件
注意:
1、public class 后的字母要和文件名大小写对应起来,注意字符的大小写
2、成对出现的符号如大括号、小括号等一次性写一对
3、遇到大括号{}用tab键来缩进,养成良好的缩进习惯
4、编写完的源代码需要进行编译成类文件
5、在cmd中进入源代码所在文件夹进行编译
javac hello.java
java hello
标签:blog http ar java sp 文件 div 2014 log
原文地址:http://www.cnblogs.com/chavez-wang/p/4029900.html