struct Foo{
int _a;
this(int a){ _a = a; }
int opCall(int b){ return b * b; }
}
Foo f;
int rt = f(33); //Error: cannot implicitly convert expression ((Foo __ctmp1294 = 0;
//, __ctmp1294).this(33)) of type Foo to int
我在TDPL或网站上的opCall
找不到足够的信息。
我需要this()
和opCall()
,但是,当this()
存在时,上述代码不起作用。我是否必须摆脱构造函数?