2
1

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入門 配列

Last updated at Posted at 2014-08-05

Java入門
配列

C言語と同様に、Javaでも配列は存在します。
しかし、宣言の方法がC言語とは異なるようです。

C言語

sample.c
int a[] = {0, 1, 2, 3};

Java 

sample.java
int[] a = {0, 1, 2, 3};

 
C言語では変数名の後ろに[ ]を記述して、配列を宣言しますが
Javaでは型名の後ろに[ ]を記述して宣言を行います。

sample.java
int[] b;
b[0] = 0;
b[1] = 1;

宣言後は、上記のように使用することが可能です。ここはC言語と同じですね。

多次元配列も型名の後ろに[ ]を記述して宣言を行います。

sample.java
int [][] score = new int [2][3];
score[0][0] = 10;
score[0][1] = 20;
score[0][2] = 30;
score[1][0] = 40;
score[1][1] = 50;
score[1][2] = 60;
2
1
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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?