ArraList定义在类中如何赋值
时间: 2024-05-11 20:17:22 浏览: 55
C#中数组Array,ArrayList,泛型List详细对比
在类中定义一个 ArrayList 可以通过以下步骤进行赋值:
1. 在类的成员变量中声明 ArrayList,例如:
```
public class MyClass {
private ArrayList<String> myArrayList;
}
```
2. 在类的构造函数中对 ArrayList 进行初始化,例如:
```
public MyClass() {
myArrayList = new ArrayList<String>();
}
```
3. 在类的方法中对 ArrayList 进行赋值,例如:
```
public void setArrayList(ArrayList<String> arrayList) {
myArrayList = arrayList;
}
```
这样,在实例化 MyClass 类的对象后,可以通过调用 setArrayList 方法来对 myArrayList 成员变量进行赋值。例如:
```
MyClass myClass = new MyClass();
ArrayList<String> arrayList = new ArrayList<String>();
arrayList.add("value1");
arrayList.add("value2");
myClass.setArrayList(arrayList);
```
阅读全文