我正在解析一个基于文本的文件以从中读取变量。文件中变量的存在很重要,所以我决定编写一个模板类,它将保存变量的值 ( Value
) 及其存在标志 ( Exists
)。
template<class Type>
class MyVariable
{
public:
Type Value;
bool Exists;
MyVariable()
: Exists(false), Value(Type())
{
}
MyVariable(const Type & Value)
: Exists(true), Value(Value)
{
}
MyVariable(const Type && Value)
: Exists(true), Value(std::move(Value))
{
}
MyVariable(const Type & Value, bool Existance)
: Exists(Existance), Value(Value)
{
}
MyVariable(const Type && Value, bool Existance)
: Exists(Existance), Value(std::move(Value))
{
}
size_t size() const
{
return Value.size();
}
const MyVariable & operator=(const MyVariable & Another)
{
Value = Another.Value;
Exists = true;
}
const MyVariable & operator=(const MyVariable && Another)
{
Value = std::move(Another.Value);
Exists = true;
}
const Type & operator[](size_t Index) const
{
return Value[Index];
}
Type & operator[](size_t Index)
{
return Value[Index];
}
operator const Type & () const
{
Value;
}
operator Type &()
{
Value;
}
};
存储的变量类型偶尔会是std::vector
,所以我重载了下标运算符operator[]
来直接访问向量的元素。这样我就可以将Value
andExists
成员设为私有。
我在代码中像这样使用这个类:
const MyVariable<std::vector<int>> AVector({11, 22, 33, 44 ,55});
for (size_t i=0; i<AVector.size(); i++)
{
std::wcout << L"Vector element #" << i << L" --> " << AVector.Value[i] << std::endl; // Works okay.
std::wcout << L"Vector element #" << i << L" --> " << AVector[i] << std::endl; // Gives error.
}
我收到以下错误消息:
错误 C2679 二进制
'<<'
:未找到采用右侧操作数类型的运算符'const std::vector<int,std::allocator<_Ty>>'
(或没有可接受的转换)
我在这里做错了什么?