定义数组

定义数组的三种方式的区别

  • 喜欢学习网
  • 2024-11-19

类型不同,是类型不同,数组定义的三种方式1、靠前种int []a = newint[5];a[0] = 10;2、第二种int []c = newint[]{1...

阅读更多
    11