我有以下代码,它工作正常。
#include <boost\mpl\vector.hpp>
#include <boost\mpl\fold.hpp>
#include <boost\mpl\for_each.hpp>
#include <boost\mpl\inherit.hpp>
#include <boost\mpl\inherit_linearly.hpp>
#include <iostream>
using namespace boost::mpl::placeholders;
typedef boost::mpl::vector<short[2], long, char*, int> member_types;
template <typename T>
struct wrap
{
T value;
};
struct print
{
template <typename T>
void operator()(T) const
{
std::cout << typeid(T).name() << std::endl;
}
};
typedef boost::mpl::inherit_linearly<member_types, boost::mpl::inherit<wrap<_2>, _1> >::type Generate;
void main()
{
Generate generated;
print p;
std::cout << static_cast<wrap<int>&>(generated).value << std::endl;
boost::mpl::for_each<member_types>(p);
}
但如果我这样修改它:
struct print
{
Generate generated;
template <typename T>
void operator()(T) const
{
std::cout << static_cast<wrap<int>&>(generated).value << std::endl;
}
};
我收到错误 错误C2440:'static_cast':无法从'const Generate'转换为'wrap&amp;'同 [ T = INT ]
为什么它在main中工作,但如果我将它放入模块中则不行?如何将数据放入一个地方我可以使用由类型列表驱动的一系列模板函数调用的类型列表创建的数据值。基本上我如何制作一个对这两个部分有用的对象?
答案 0 :(得分:3)
如果您将operator()
中的print
更改为以下内容,可能是
代码可以编译:
struct print {
...
void operator()(T) // remove const
或
static_cast<wrap<int>const&>(generated) // add const