gpt4 book ai didi

java - java中的打印方法

转载 作者:行者123 更新时间:2023-12-02 07:49:49 24 4
gpt4 key购买 nike

我想向您询问有关打印 vector 数组的问题,如下:

Vector[] routingTable = new Vector[connectivity.length];

我尝试了这个方法,但它对我不起作用,它给了我protocol.Route@c17164 当我在 main 中打印时,这是代码,所以你能告诉我为什么它不打印正确的值吗?

public String printRT(int hop)
{
String s = "";
for (int i = 0; i < conf.routingTable[hop].size(); i++)
{
s= " ROUTING TABLE " + conf.routingTable[hop].get(i);
}
return s;
}

最佳答案

看起来您需要在 protocol.Route 中实现 toString() 方法。

class Route {
public String toString() {
return "some string that makes sense";
}
}

关于java - java中的打印方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/826467/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com