这是我的c ++模板类:
template <class Type, class Key = ColumnKey>
class Column {
protected:
std::shared_ptr<Type> doGet() const {
std::lock_guard<std::mutex> lock(mutex_);
return std::make_shared<Type>(value_);
}
void doSet(const std::shared_ptr<Type> &value) {
std::lock_guard<std::mutex> lock(mutex_);
value_ = *value;
}
private:
Type value_;
std::mutex mutex_;
};
template<class... Columns>
class Table : private Columns... {
public:
template<class Type, class Key = ColumnKey>
std::shared_ptr<Type> get() {
return Column<Type, Key>::doGet();
}
template<class Type, class Key = ColumnKey>
void set(const std::shared_ptr<Type> &value) {
Column<Type, Key>::doSet(value);
}
};
如果我只调用set
方法,我可以正确编译:
int main() {
Table3 table3;
table3.set<int>(std::make_shared<int>(1));
table3.set<std::string, Key1>(std::make_shared<std::string>("hello_3a"));
table3.set<std::string, Key2>(std::make_shared<std::string>("hello_3b"));
}
其中,
struct Key1;
struct Key2;
using Table3 = Table<Column<int>, Column<std::string, Key1>, Column<std::string, Key2>>;
当我调用get
方法时:
std::cout<<*table3.get<int>()<<std::endl;
std::cout<<*table3.get<std::string, Key1>()<<std::endl;
我收到编译错误说:
错误:没有匹配的构造函数用于初始化 &#39;的std :: lock_guard&#39; std :: lock_guard lock(互斥锁_);
但我使用相同的方法调用doGet
和doSet
。为什么仅在doGet
运行时才出现编译错误?我使用它的方式有误吗?
我正在使用以下方法在MacOS 10.13.1上进行编译:
g++ file.cpp -std=c++11 -o file
答案 0 :(得分:0)
doGet()
是一个 const
函数。
声明互斥如下:
mutable std::mutex mutex_;
建议:
使用 std::scoped_lock
而不是 std::lock_guard
。
快乐编码!!! 干杯!!!