能不能在构造函数里面取得本对象地址?能不能在构造函数里面取得本对象地址?[解决办法]
class A{public: A() { cout <<this <<endl; }};int main(){ A a; return 0;}