作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
假设我们有一个 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/
我是一名优秀的程序员,十分优秀!