数组在类中的声明与创建
Posted 奋斗的少年WH
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数组在类中的声明与创建相关的知识,希望对你有一定的参考价值。
1 public class student{ 2 private String name; 3 ... 4 } 5 6 public class TestStudent{ 7 public static void main(String[] args){ 8 //常见的声明 9 String[] str=new String[3]; 10 //同理,创建多个类数组 11 Student[] stu=new Student[3]; 12 stu[0]=new Student(); 13 } 14 }
以上是关于数组在类中的声明与创建的主要内容,如果未能解决你的问题,请参考以下文章