Difference between int[] array and int array[](int[] 数组和 int 数组[] 的区别)
问题描述
I have recently been thinking about the difference between the two ways of defining an array:
int[] array
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.
这篇关于int[] 数组和 int 数组[] 的区别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!