0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Javaの学習(1)-Hello World

Last updated at Posted at 2019-06-13

#まずは実際に動かす
環境構築は色々なサイトにあるので割愛(めんどい笑)。
以下が、ソースコードになる。

Main.java
public class Main{
	public static void main(String[] args){
		System.out.println("Hello World!!");
	}
}

(お、ソースコードがQiitaで表示できた笑)

これを実行することで結果が「Hello World!!」と出力される。
基本的にプログラミングは最初にHello Worldを出すことから始める(なんで?)

とりあえずSystem.out.println("文字列")で文字列を表示することができることがわかる。
色々な表示方法があるのかもしれないがそれは追々やっていく。

#Javaのソースファイルの名前
ソースファイルの名前の付け方。
コードの1行目に「public class Main」とあるが、このMain部分(クラス名という)を使って「Main.java」と命名する。
Mainの部分については色々なものに変更可能。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?