gpt4 book ai didi

c++ - BOOST MPL 添加两个 list_c 对象导致意外行为

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:11:48 26 4
gpt4 key购买 nike

我有以下代码:

#include <boost/mpl/list_c.hpp>
#include <boost/mpl/transform.hpp>
#include <boost/mpl/plus.hpp>
#include <boost/mpl/equal.hpp>
#include <boost/mpl/equal_to.hpp>
#include <boost/mpl/assert.hpp>
#include <iostream>
#include <typeinfo>
#include <assert.h>

using namespace boost::mpl;

typedef list_c<long,0,2,4,6,8,10> evens;
typedef list_c<long,2,3,5,7,11,13> primes;
typedef list_c<long,2,5,9,13,19,23> sums;

typedef transform< evens, primes, plus<> >::type result;
BOOST_MPL_ASSERT(( equal< result,sums,equal_to<_1,_2> > ));

int main()
{
std::cout << typeid(sums).name() << std::endl << typeid(result).name() << std::endl;
assert(typeid(sums) == typeid(result));
}

它编译,所以 BOOST_MPL_ASSERT 成立。但是,运行它时,main 函数中的断言失败。这是什么意思?包含相同元素的两个 list_c 事物(我似乎缺少合适的词)不应该定义相同的类型吗?

感谢您的帮助。

最佳答案

MPL 不对 MPL 算法产生的确切类型做出任何保证。

关于c++ - BOOST MPL 添加两个 list_c 对象导致意外行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13631641/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com