第一课 Hello World程序

Posted tian5339

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第一课 Hello World程序相关的知识,希望对你有一定的参考价值。

  接触一门编程语言都是从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程序的主要内容,如果未能解决你的问题,请参考以下文章

Golang✔️走进 Go 语言✔️ 第一课 Hello World

初学java---第一课《Hello World!!!》

第一课

java第一课:安装环境变量和用记事本实现Hello World

面试官:你精通多少种语言的 Hello World?

python第一课