我的第一个JAVA程序:Helloworld
1.创建文件夹存放代码
2.新建一个java文件
文件后缀名为.java
Hello.java
【注意】系统显示文件后缀名才能更改
3.编写代码
<pre class="md-fences md-end-block ty-contain-cm modeLoaded" spellcheck="false" lang="java" cid="n12" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: var(--monospace); font-size: 0.9em; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(248, 248, 248); position: relative !important; border: 1px solid rgb(231, 234, 237); border-radius: 3px; padding: 8px 4px 6px; margin-bottom: 15px; margin-top: 15px; width: inherit; color: rgb(51, 51, 51); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">public class Hello{
public static void main(String[] args){
System.out.print("Hello,World");
}
}</pre>
4.在cmd命令行中进入同级文件夹
输入Dos命令:Javac Hello.java
文件夹里会生成一个class文件
【注意事项】
每个单词的大小写有严格要求,拼写顺序不能出错
输出中文可能会出现乱码
文件名与类名必须保持一致,并首字母大写
不能使用中文符号
5.输入Dos命令:Java Hello**