gpt4 book ai didi

java - 在以对象作为值的 Java 哈希表中,如何返回对象值?

转载 作者:行者123 更新时间:2023-12-01 07:31:05 25 4
gpt4 key购买 nike

这是我的示例代码。这会打印出“{test=theClass@7096985e}”,但我需要它来给我类型和范围的值。我已经尝试了几件事——任何方向都会很棒。谢谢!

import java.util.*;

class theClass {
String type;
String scope;

public theClass(String string1, String string2) {
type = string1; scope = string2;
}

}

public class Sandbox {

public static void main(String[] args){
Hashtable<String, theClass> theTable = new Hashtable<String, theClass>();
theClass object = new theClass("int", "global");
theTable.put("test", object);

System.out.println(theTable.toString());

}
}

最佳答案

只需重写类中的 toString 方法即可。

class theClass{
String type;
String scope;

public theClass(String string1, String string2)
{
type = string1; scope = string2;
}

@Override
public String toString(){
return type+" "+scope;
}

}

关于java - 在以对象作为值的 Java 哈希表中,如何返回对象值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17521618/

25 4 0
文章推荐: regex - 用粗体 'xxx' 替换 [b]xxx[/b]
文章推荐: jquery - 将表格转换为列表分组 3 行
文章推荐: jquery - 如何在 而不是