- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的示例代码。这会打印出“{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/
我是一名优秀的程序员,十分优秀!