在Java中,可以使用静态代码块或静态方法来在程序开始时装入一个表。
public class MyClass {
private static List<String> table;
static {
// 初始化表的数据
table = new ArrayList<>();
table.add("data1");
table.add("data2");
table.add("data3");
}
// 其他代码...
}
public class MyClass {
private static List<String> table;
public static void loadTable() {
// 初始化表的数据
table = new ArrayList<>();
table.add("data1");
table.add("data2");
table.add("data3");
}
// 其他代码...
}
在程序的其他地方,可以直接调用MyClass.loadTable()
方法来装入表的数据。
注意:以上示例仅为演示如何在程序开始时装入一个表,实际情况中,表的数据来源可能是数据库、文件等。具体的实现方式会根据实际需求和数据来源进行调整。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云