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 1 year has passed since last update.

Javaの基本ルール(備忘録)

Last updated at Posted at 2022-02-23

##クラス名とファイル名##

クラス名とファイル名は同じに(頭文字は大文字にしなくてはならない)

例 Main.java Sub.java

例 class Main {クラスブロック}   class Sub{クラスブロック}

##コメントの記述方式##

コメントは他言語と同様の記述方式を採用しているようです。

/* コメント本文(複数行記述可能) */

// コメント本文 (行末まで記述可能)

##変数と定数##

変数と定数の宣言方法です。
定数名は基本的にすべて大文字で記述します。
定数は使用する計算式などで今後変化しないものを入れることが多いです。

//宣言のみの場合

 変数名;                int age;
final  定数名;          final double TAX;

//初期値を入れる場合

 変数名 = 初期値;       int age = 22;
final  定数名 = 初期値;       final double PIE = 3.14;
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?