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 3 years have passed since last update.

JAVA自習忘備録_2020/02/17

Last updated at Posted at 2021-02-17

【概要】JAVAについて自分で勉強したことを残す
ド基礎知識なのであしからず

◆コードの基礎構造

//クラスブロック(classのあとクラス名を記載する)
 public class Main {
//メソッドブロック(ここに命令や指示を記載する)
	public static void main(String[] args) {
	}
} 

・行の終わりには「;」をつける
・コード内のコメント(指示や命令以外のテキスト)
 ・1行のみのコメント:文頭に「//」をつける
 ・複数行コメント:文頭に「/」、文末に「/」…

◆変数
 ・変数宣言と代入

//hensuという名前で変数を作成する
int hensu;

//変数「hensu」に10を代入する
hensu = 10; 

・変数の初期化
 →変数宣言と代入をセットにしたもの

int hensu = 20;

◆テキスト表示
・「あああ」(テキストのベタ書き)を表示する場合

System.out.println("あああ");

・変数「hensu」の値を表示する場合

System.out.println(hensu);

・テキストのベタ書きと変数の値のミックス表示

System.out.println("あああ" + hensu);

→上記の場合、「あああ(変数「hensu」の値)」と表示される

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?