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配列の要素とforとlengthとvalueと拡張for文の活用

Last updated at Posted at 2019-06-06

今回は、Javaの配列について勉強してみました!

配列→同じ目的で使用される複数の値を格納する場合に利用されます。
(「同じデータ型」で「同じような目的」で利用される変数を数多く必要とされる場合に利用すると便利になります!)

1
データ型[]
変数;
変数[値]=値;
注意
配列の要素は0から始めます。

2
for(データ型 変数名:コレクション→length(値の数が増えた場合)→value(スマート化)要素が終わるまで処理の実行しなさいという命令。拡張for文とも言います
java配列.png
java配列要素.png

このような感じになりました。

今日もお疲れ様でした。

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?