标签:alt static 空格 print 编写 public info hello stat
建一个文件夹,存放代码
新建Java文件
编写代码
public class helloworld{
public static void main (String[] args){
System.out.print("hello,world!");
}
}
在cmd中编写Javac 文件名+后缀,生成class文件
运行class文件,Java class文件名
Java要注意大小写
尽量使用英文(符号也要用英文)
文件名 和 class 后的类名要保持一致,且首字母大写
标签:alt static 空格 print 编写 public info hello stat
原文地址:https://www.cnblogs.com/ruobiliunian/p/14471536.html