Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
386 views
in Technique[技术] by (71.8m points)

java - difference between these 2 ways of initializing an simple array

In java, I can initialize an array with predefined content either by :

int[] myArr = new int[]{1,2,3};

Or by :

int[] myArr = {1,2,3};

Essentially, is there any difference between these two ways ? Are they completely identical in Java ? Which way is better and why?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

is there any difference between these two ways ? Are they completely identical in Java ?

No there is no difference. Both of them will create an array of length 3 with the given values.

The 2nd one is just a shorthand of creating an array where you declare it. However, you can't use the 2nd way of creating an array, at any other place than the declaration, where the type of array is inferred from the declared type of array reference.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...