我制作了一个简单的类,只是为了尝试 C++ 中的转换构造函数。
它显然可以工作,但是在执行某个操作时,编译器似乎没有调用它。我会知道为什么,或者也许我错了。
#include <iostream>
using std::cout; using std::endl;
class CostruttoreConversione
{
public:
CostruttoreConversione(int val = 0)
{
cout << "Costruttore chiamato" << endl;
valore = val;
}
inline int getValore(){
return valore;
}
CostruttoreConversione provaConversioneImplicita()
{
return -10; //here the type *should* be converted; doesn't happen.
}
private:
int valore;
};
int main(void){
CostruttoreConversione obj(10);
cout << "obj = " << obj.getValore() << endl;
obj = 20; //WORKS
cout << obj.getValore() << endl;
// cout << obj.provaConversioneImplicita() << endl; doesn't work.
return 0;
}