struct wordType { string word = ""; int count = 0;};wordType object("hello world");
我得到的错误是:
[Error] no matching function for call to 'wordType::wordType(std::string&)解决方法 您正在尝试使用wordType没有的构造函数构造wordType对象.您可以将该构造函数添加到您的代码中:
struct wordType { string word = ""; int count = 0; wordType() = default; wordType(const wordType&) = default; wordType(const string &aword) : word(aword) {} // <-- here};wordType object("hello world");
或者,您可以在没有任何构造函数参数的情况下使用局部变量,然后将其填充:
struct wordType { string word = ""; int count = 0;};wordType object;object.word = "hello world";总结
以上是内存溢出为你收集整理的c – 为什么我不能使用此构造函数参数构造此用户定义类型的对象?全部内容,希望文章能够帮你解决c – 为什么我不能使用此构造函数参数构造此用户定义类型的对象?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)