gpt4 book ai didi

c++ - 将模板参数插​​入 ostream

转载 作者:行者123 更新时间:2023-11-30 03:55:57 25 4
gpt4 key购买 nike

我正在尝试设计一个可变参数模板,它采用参数包(即字符)并将这些字符立即插入到 cout 中。我想象我可以使用一个名为 PrintChars 的结构,并进行某种模板递归以到达参数包中的每个参数。我已经在运行时成功地做到了这一点,但现在我想在编译时做到这一点。例如,我想调用以下模板在终端中打印“foo”。

cout << PrintChars<'f', 'o', 'o'>()

你有什么想法吗?谢谢。

最佳答案

这只是一个处理参数包的简单练习。我的PrintChars<...>实际上没有任何状态,它只是传递参数包。

http://ideone.com/39HcTG

#include <iostream>
using namespace std;

template<char... s>
struct PrintChars {};

std::ostream& operator<< (std::ostream& o, const PrintChars<>&)
{
return o;
}

template<char head, char... tail>
std::ostream& operator<< (std::ostream& o, const PrintChars<head, tail...>& pc)
{
o << head << PrintChars<tail...>();
return o;
}

int main() {
cout << PrintChars<'f', 'o', 'o'>();
return 0;
}

这里唯一的“元编程”是创建正确嵌套的 operator<<打电话。

关于c++ - 将模板参数插​​入 ostream,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28797388/

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