我必须为 ArrayList 创建一个构造函数。所以基本上我想要的是这个构造函数创建一个 ArrayList。
public Recipe(String[] modifications){
The problem is, it should give something like(example):
String[] modifications = [heatup, cooldown, mix, heatup]
构造函数会像这样工作吗:
Recipe(heatup, cooldown, mix, heatup)
还是我需要将其更改为:
Recipe(modifications){
this.myArrayList[1] = modifications[1]
.
.
.
}
谢谢,如果我的代码中有一些大错误,我很抱歉,仍在学习我的 Java 代码。