我有一个只有一个属性的类:
var A = function(b){this.Value=b};
var a = new A('hello world');
我想检索属性的值如下:
var what = a; //instead of using var what =a.Value;
是否可以?在 python 中,我知道我可以使用call来实现它。
class A:
def __init__(self,b):
self.Value=b
def __call__(self):
return self.Value
a=A('hello world')
what=a()