我找不到有关此问题的信息。我编写了一个DataType类,并希望将value属性作为默认值返回
MyInteger{
Integer value
MyInteger(Integer iv)
{
this.value = iv
}
}
如何在不调用getValue()的情况下获取值?
MyInteger i = new MyInteger(5)
print i.value //works
print i.getValue() //works
print i //this is what I want to achieve
Integer realInt = i //or more specific this
标准整数能够做到这一点,但如何做到呢?谢谢您的提示!
1条答案
按热度按时间cfh9epnr1#
不确定您的意图是什么,但可以创建一个“新整数”,并按如下方式使用: