int[] 数组和 int 数组[] 的区别

2022-01-31 00:00:00 arrays java

I have recently been thinking about the difference between the two ways of defining an array:

  1. int[] array
  2. int array[]

Is there a difference?

解决方案

They are semantically identical. The int array[] syntax was only added to help C programmers get used to java.

int[] array is much preferable, and less confusing.

相关文章