我有file
,其中包含以下内容:
5
Derrick Rose
1 15 19 26 33 46
Kobe Bryant
17 19 33 34 46 47
Pau Gasol
1 4 9 16 25 36
Kevin Durant
17 19 34 46 47 48
LeBron James
5 10 17 19 34 47
我正在尝试将票证的名称和号码放在我的票证构造函数的数组中,但是当我实例化我的票证对象并尝试显示它时,我得到以下内容:
Tickets: lottery$Ticket@33909752
Tickets: lottery$Ticket@55f96302
Tickets: lottery$Ticket@3d4eac69
Tickets: lottery$Ticket@42a57993
Tickets: lottery$Ticket@75b84c92
我的构造函数中是否存在问题,或者是否无法在不首先将其作为字符串的情况下打印数组?
int lim = scan.nextInt();
scan.nextLine();
for(int i = 0; i < lim; i++)
{
String name = scan.nextLine();
String num = scan.nextLine();
String[] t = num.split(" ");
int[] tichold = new int[t.length];
for(int j = 0; j < t.length; j++)
{
tichold[j] = Integer.parseInt(t[j]);
}
Ticket ticket = new Ticket(name, tichold);
System.out.println("Ticket: " + ticket);
}
scan.close();
}
public static class Ticket
{
public String name;
public int[] tarray;
public Ticket(String name, int[] tarray)
{
this.name = name;
this.tarray = tarray;
}
}
答案 0 :(得分:4)
您需要为其提供toString
方法。以下是您可以使用的示例:
@Override
public String toString() {
return "Ticket{" +
"name='" + name + '\'' +
", tarray=" + Arrays.toString(tarray) +
'}';
}
答案 1 :(得分:3)
为了实现这一点,你需要编写一个重写的toString方法并在那里写入你想要的内容。
public String toString(){
return //whatever you need goes here and will be printed when you try and
//print the object
}
答案 2 :(得分:1)
您必须覆盖从Object类继承的toString方法:
@Override
public String toString(){
return //Enter the format you require
}
记住故障单是一个引用变量,因此当您将其打印出来时,您将获得哈希码以及该对象所属的类的名称。