我想从我的班级创建一个对象。我的类有一个数组属性,如何通过括号传递它?
这是我的课:
private String Description;
private int[] Data = {0, 0, 0, 0, 0, 0, 0, 0, 0};
public Key(String Desc, int[] d)
{
Description = Desc;
Data = d;
}
这就是我创建对象的方式:
Key k1 = new Key("Shoham's Key", {0, 5 , 6, 4, 3, 2, 7, 1, 9});
谢谢。