パラメータの 1 つが配列である独自のクラスを作成しようとしています。
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]) のようなことで呼び出したい