wanlige


字符串数组:

String[] str=new String[5];
String[] str=new String[]{"a","b"};
String[] str={"a","b"};

 

整形数组:

int[] i=new int[5];
int[] i=new int[]{0,1};
int[] i={0,1};

 

分类:

技术点:

相关文章:

  • 2021-12-08
  • 2021-12-03
  • 2021-12-08
  • 2021-12-28
  • 2021-12-08
  • 2021-05-28
  • 2021-11-23
猜你喜欢
  • 2021-12-28
  • 2021-11-14
  • 2021-12-08
  • 2021-11-07
  • 2020-05-06
  • 2021-12-03
相关资源
相似解决方案