gpt4 book ai didi

java - 如何在 for 循环和 switch-case 中生成 100 个不同的引用变量?

转载 作者:行者123 更新时间:2023-12-01 07:48:58 25 4
gpt4 key购买 nike

我想根据 Position 枚举类型创建 100 个新实例。在 switch case 语句中,我有 5 个案例,并且根据枚举类型,我想创建相应的 Employee 实例。我的问题是,我不知道如何在每次创建新实例时创建和分配新的变量名称,例如:worker1、worker2、worker3。这是我到目前为止所想到的:

final String randomVariableName() {
int count = 1;
String s = "worker" + count;
count++;
return s;
}

final Position randomPosition(){
return positions[random.nextInt(positions.length)];
}
public void run() {
for (int i = 1; i <= 100; i++) {
String randomName = "worker" + i;
Position p = randomPosition();
switch (p) {
case PROJECT_LEADER:
ProjectLeader randomVariableName() = new ProjectLeader(p, randomName, 5000);
case DEVELOPER_LEADER:
DeveloperLeader randomVariableName() = new DeveloperLeader(p, randomName, 1000);
}
}

但是这样,我就无法调用 randomVariableName() 方法,因为: Variable 'randomVariableName' 已经在作用域中定义了

我什至不确定这是否是一个好的解决方案。我只需要一种方法,在 switch-case 中创建 100 个唯一的引用变量名称。

最佳答案

您无法在 Java 运行时创建新的变量名称。您可以做的是使用数组或集合来存储您的实例。

Employee employees[] = new Employee employees[100];

for (int i = 0; i < 100; i++) {
String randomName = "worker" + i;
Position p = randomPosition();
switch (p) {
case PROJECT_LEADER:
employees[i] = new ProjectLeader(p, randomName, 5000);
break;
case DEVELOPER_LEADER:
employees[i] = new DeveloperLeader(p, randomName, 1000);
break;
}
}

循环结束后,可以访问employees[0]通过employees[99]获取 100 个实例。

比使用原始数组更合适的是集合,例如一个ArrayList<Employee>您将实例添加到其中。

另外 - 请记住在 switch() 中使用中断来终止 case 语句

关于java - 如何在 for 循环和 switch-case 中生成 100 个不同的引用变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42829288/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com