下面的代码重现了我真的不了解 boost MPL 库的行为:
#include <boost/type_traits/is_same.hpp>
#include <boost/mpl/int.hpp>
#include <boost/mpl/plus.hpp>
using namespace boost;
int main() {
typedef mpl::int_<1> one;
typedef mpl::int_<2> two;
typedef mpl::int_<3> three;
// The following line breaks compilation...
// static_assert( is_same< mpl::plus<one,two>::type, three >::type::value, "Not the same type");
// ...while this works
static_assert( mpl::plus<one,two>::type::value == three::value , "Not the same value");
return 0;
}
我的问题是:为什么mpl::plus<one,two>::type
不是同一类型three
?
我在尝试解决
C++ Template Meta-Programming第 3 章末尾的练习时遇到了这个问题。我已经尝试查看<boost/mpl/plus.hpp>
其中包含的内容,但是代码太复杂了,我无法理解。