标签: class object constructor
如何在类这样的类中声明带参数this的对象? 对象Something没有默认构造函数。 我知道我可以用指针做到这一点。
this
Something
但有没有办法将它声明为值类型?
class MyClass { public: Something sth(this); };