gpt4 book ai didi

c++ - Boost::MPL Vector 和 For_Each:如何将 avector 打印为元组?

转载 作者:太空狗 更新时间:2023-10-29 21:27:50 25 4
gpt4 key购买 nike

假设我们有一个 mpl::vector,我们想要将其打印(例如 cout)为这样的字符串:int, string, char。如何用 boost::mpl 做这样的事情?

最佳答案

创建一个仿函数并调用 boost::for_each:

struct print_class_name {
template <typename T>
void operator()( T t ) const {
std::cout << typeid(t).name() << " ";
}
};

boost::mpl::for_each< Sequence >(print_class_name());

关于c++ - Boost::MPL Vector 和 For_Each:如何将 avector 打印为元组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8386494/

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