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の勉強 - 2

Last updated at Posted at 2017-05-09

コメントの挿入

・1行の場合は「//」
・複数行の場合は前後を「/* */」で囲む

Yomogi.java
public class Yomogi{
    public static void main(String[] args){
		
		// 1行のコメント
        
		System.out.println("Hello, world.");
		
		/*
		複数行の場合
		※1行で使ってもいい。
		*/
		
    }
}

これを実行すると。

pic002.JPG

コメントなので当然表示されない。

printとprintlnの違い

ざっくり言うと行末に改行が入るかどうかくらいの違い?

・print ⇒ 行末の改行なし
・println ⇒ 行末の改行あり
・明示的に改行を入れるには「\n」

Yomogi.java
public class Yomogi{
    public static void main(String[] args){
		//printのとき
		System.out.print("Hello, ");
		System.out.print("world.\n");
		
		//printlnのとき
		System.out.println("Hello, ");
		System.out.println("world.");
    }
}

実行して違いを見ると。

pic003.JPG

状況によって使い分ける感じですかねぇ。

・System.out.println()でも改行になるらしい。

変数使ったり、数値を出力したり

整数の意味が思い出せなかったくらい算数の知識が消えてました。
とりあえず小数点じゃないほうってことで納得した。

・整数を使うための変数は「int」らしい
・変数への数値を入れるには「=」を使う

と言うわけで、基本形に整数の変数aを定義して
適当な数値を入れて出力結果を見てみる。

Yomogi.java
public class Yomogi{
	public static void main(String[] args){
		int a;		
		a = 12;
		
		System.out.println("数値の出力");
		System.out.println(a);
		System.out.println(34);
	}
}

そして実行。

pic004.JPG

文字列の出力のときには気づいてなかったけど

・printlnやprintで文字列の場合は前後に「"」をつける必要がある。
・変数や数値の場合は「"」は不要っぽい。

まぁ、今はそんな認識でいいかな。
勉強継続のためにハードルを低くしていくスタンス。

今回はココまで。

0
0
3

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?