关键是用值“哔”初始化指向Mystic对象的指针有什么想法吗?

class Mystic {
private:
 string label;
 Mystic(string & newlbl) { setLabel (newlbl)};
public:
 void setLabel(string newlbl){label = newlbl;}
 Mystic() : label(){};
};
int main(int argc, char *argv[])
{
...    //i tried this
       //string *p1 = new string("beep");
      //Mystic myst(p1);
}

最佳答案

接受字符串的构造函数不是公共的,因此您不能使用它。而是使用默认构造函数,然后使用setLabel方法。

int main(int argc, char** argv) {
  Mystic m;
  m.setLabel("beep");
  Mystic* p = &m;
}

10-07 12:28