你好 StackOverflow 社区,
我遇到了一些涉及将元素添加到数组中的输出问题。我在课堂上创建了一个程序,它运行正常,但是当我在自己的计算机上运行相同的程序/代码时,我得到以下输出(有时会生成不同的数字/错误):
“玩具:
玩具演示.ToysDemo@15f5897toysdemo.ToysDemo@b162d5"
为了更清楚,这里是代码:
package toysdemo;
public class ToysDemo {
private float price;
private String name;
public float getPrice(){
return price;
}
public void setPrice(float newPrice){
price = newPrice;
}
public String getName() {
return name;
}
public void setName(String newName) {
name = newName;
}
public static void printToys(ToysDemo arrayOfToys[], int size) {
//display content of array
System.out.println("The toys: ");
for (int i = 0; i < size; i++) {
System.out.print(arrayOfToys[i]);
}
System.out.println();
}//print toys
public static void main(String[] args) {
ToysDemo arrayOfToys[] = new ToysDemo[5];
int numberOfToys = 0;
// create two toys and save into array
ToysDemo toy = new ToysDemo();
toy.setPrice((float)111.99);
toy.setName("Giant Squid");
arrayOfToys[numberOfToys++] = toy;
ToysDemo toy2 = new ToysDemo();
toy2.setPrice((float)21.99);
toy2.setName("small Squid");
arrayOfToys[numberOfToys++] = toy2;
//print toys into array
printToys(arrayOfToys, numberOfToys); //the call
}
}
这是一个真正简单的程序,但令人沮丧的是,正确的输出无法显示。
如果有人能帮助我解决这个难题,我将不胜感激。
谢谢