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 変数宣言の書き方

Posted at

変数宣言の書き方

Javaで変数宣言をするときは以下のように記述する

データ型 変数名;

//例:整数型の変数 age と文字列の変数 name を宣言

int age; //整数型の変数 age
String name; //文字列の変数 name

変数名の付け方

変数名を付ける際には以下のような注意点がある

  • 予約語(Javaの構文で使用する単語 if や void など)を使用しない
  • すでに利用している変数名は使わない
  • 大文字、小文字は区別される(例:name と Name は別の変数とみなされる)
  • キャメルケースを利用することが望ましい(例:userName)
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?