gpt4 book ai didi

c++ - operator= 对于字符串集不明确

转载 作者:行者123 更新时间:2023-11-30 02:35:04 27 4
gpt4 key购买 nike

我的基类.h文件

#ifndef ITEM_H
#define ITEM_H

#include <ostream>
#include <set>
#include <string>

using namespace std;
typedef set<string> StringSet;

class Item
{
protected:
string title;
StringSet keywords;
public:
Item();
Item(const string& title, const string& keywords);
virtual ~Item();
//virtual void addKeywords(string keyword) const;
string getTitle();
string getKeywords();

};
#endif

继承类.cpp文件

#include "Book.h"

Book::Book()
{
title = "no title";
keywords = { "no keywords" }; // error
author = "no author";
pagesNr = 0;

}

为什么这行 keywords = { "no keywords"}; 会出现“C2593: 'operator =' is ambiguous”,如何解决?谢谢。

最佳答案

{ "no keywords" }是一个初始化列表,显然 Visual Studio 不能将赋值运算符用于 std::set<std::string>与初始化列表。相反,您可以直接为集合使用构造函数:

Book::Book()
: keywords({ "no keywords" })
{
title = "no title";
author = "no author";
pagesNr = 0;

}

关于c++ - operator= 对于字符串集不明确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34036962/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com