我有以下代码:
#include <iostream>
#include <tuple>
struct H
{
static const int Index = 0;
};
struct V
{
static const int Index = 1;
};
struct Slice
{
Slice(): Value(5) { }
int Value;
};
class Dimension
{
public:
template<class D>
Slice& Slice() // causes compiler error
//::Slice& Slice() // compiles ok
{
return std::get<D::Index>(slices);
}
template<class D>
::Slice const& Slice() const
{
return std::get<D::Index>(slices);
}
private:
typedef std::tuple<::Slice, ::Slice> SlicesT;
SlicesT slices;
};
int main(int, char*[])
{
Dimension d;
std::cout << d.Slice<V>().Value << std::endl;
d.Slice<V>().Value = 10; // error here
std::cout << d.Slice<V>().Value << std::endl;
}
这在 VS2012 中给出了这个错误:error C3892: 'd' : you cannot assign to a variable that is const
我可以通过限定第一个函数返回类型(如注释掉的行)来修复它。但我真的不明白这里发生了什么。这是编译器错误还是真正危险的代码?