2
2

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(代表的な型)

Last updated at Posted at 2017-09-25

#予約語の存在
代表的な型の存在

  • long  大きな整数 

  • int   普通の整数

  • short  小さな整数

  • byte   更に小さな整数

  • double 普通の小数

  • float  少し曖昧でもいいような小数

  • boolean 真偽値(true or false)

  • char 一つの文字

  • String  文字の並び

    整数なら int
    小数なら double
    なお小数はお金の計算などの誤差が許されない正確な計算には適していない


   int a = 0;         ← 変数の初期化
   
   int a = 0;

   int a   = 1;   ←変数の再代入上書き

final型は定数と呼ばれ、書き換えられることは無い

とりあえず第一章終わり・・・?
練習問題も終わったけれど、整数が頭にパッと出てこないから、本にもあった通り、しばらくは口に出して覚えてみようと思う。
明日は復習したほうがいいかな(^o^)

2
2
1

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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?