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

第一课 Hello World程序

时间:2018-09-16 22:28:11      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:语言   string   public   deb   transport   bug   编程   代码   程序   

  接触一门编程语言都是从HelloWorld开始的。我们以Idea为开发工具,写一个JAVA版的HelloWorld。

  1,启动idea,点击菜单 File->New->Project

   新建一个Java工程

  2,右键点击src目录 New->Java Class 在新建的文件中打开写入以下代码

public class HelloWorld {
    public static void main(String[] args)
    {
        System.out.println("hello world");
    }
}

  3,运行后结果如下

Connected to the target VM, address: ‘javadebug‘, transport: ‘shared memory‘
hello world
Disconnected from the target VM, address: ‘javadebug‘, transport: ‘shared memory‘

Process finished with exit code 0

第一课 Hello World程序

标签:语言   string   public   deb   transport   bug   编程   代码   程序   

原文地址:https://www.cnblogs.com/tian5339/p/9657715.html

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