我正在尝试创建自己的类,其中一个参数是数组。
public class Node {
int i;
String title;
int[] links;
Node(int i, String title, int[] links){
this.i = i;
this.title = title;
this.links = links;
}
}
我可以做这个工作吗?我想通过类似 Node(4, "Title", [1,2,3]) 来调用它