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.
我正在用java编写一个体素类型的游戏,但是我有性能问题,想象一下我有一个“Cube”类,有成千上万个基于这个类创建的对象,这个类的核心是一个显示列表,我想要什么要知道是否有某种方法可以只创建一次显示列表并多次使用它而不使用接口或其他类。
希望您能理解并感谢您的帮助。
通过将该列表设为STATIC.
STATIC
public static list:
获取该变量
public static list getStaticList(){ { return list; }
声明该列表static将满足您的需要。
static
希望能帮助到你。