码迷,mamicode.com
首页 > 其他好文 > 详细

hello,world!

时间:2021-03-03 12:16:27      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:alt   static   空格   print   编写   public   info   hello   stat   

Hello,World!

  1. 建一个文件夹,存放代码

  2. 新建Java文件

    • 文件后缀名为.java
    • helloworld.java
  3. 编写代码

    public class helloworld{
    	public static void main (String[] args){
    		System.out.print("hello,world!");
    	}
    }
    
  4. 在cmd中编写Javac 文件名+后缀,生成class文件

    • 地址前面 cmd+空格 打开cmd
    • 在sublime中 ctrl+b 直接在文件夹里生成class
  5. 运行class文件,Java class文件名

技术图片

注意

  1. Java要注意大小写

  2. 尽量使用英文(符号也要用英文)

  3. 文件名 和 class 后的类名要保持一致,且首字母大写

hello,world!

标签:alt   static   空格   print   编写   public   info   hello   stat   

原文地址:https://www.cnblogs.com/ruobiliunian/p/14471536.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!