Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想创建一个操作文件的类,我希望它读取文件并将其添加到对象类型的数组列表中(让我们说 classLists)。
如何声明 arraylist 以便我的其他类可以访问它。就说老师和校长吧。
使它成为静态的还有什么作用?
public ArrayList<classList> list = new ArrayList<classList>(); public Static ArrayList<classList> list = new ArrayList<classList>();
将数据成员设为静态意味着所有实例都可以共享该类的特定静态成员的相同值。您还可以在不实例化类的情况下访问该成员。其他类对象也可以访问类的静态成员。
public static ArrayList<classList> list = new ArrayList<classList>();