问答详情
源自:6-3 如何使用 Java 中的数组

String类型的数组怎么写?

和int类型:int[] scores=new int[]{78,97,84,68};  int[] scores=new int[]{78,97,84,68};

一样的合并的写法

String类型的怎么写?

提问者:YEIZI 2016-03-21 17:35

个回答

  • weibo_用户56557580_0
    2016-03-21 17:49:49

    String[] scores=new String[]{"78","97","84","68"};