Template within template: why quot;`gt;gt;#39; should be `gt; gt;#39; within a nested template argument listquot;(模板中的模板:为什么是“gt;gt;应该是`gt;gt;在嵌套模板参数列表中)
问题描述
我知道当我们在另一个模板中使用模板时,我们应该这样写:
I know that when we are using template inside another template, we should write it like this:
向量<pair<int,int>>s;
如果我们写的时候没有空格:
and if we write it without the whitespace:
向量<pair<int,int>>s;
我们会得到一个错误:
`>>' 应该是嵌套模板参数列表中的 `> >'
`>>' should be `> >' within a nested template argument list
我认为这是可以理解的,但我不禁想知道,在什么情况下这真的是模棱两可的?
I see this is understandable, but I just can't help but wondering, in which cases will this be really ambiguous?
推荐答案
有时你希望它是 >>
.考虑
boost::array<int, 1024>>2> x;
在 C++03 中,这成功地解析并创建了一个大小为 256
的数组.
In C++03 this successfully parses and creates an array of size 256
.
这篇关于模板中的模板:为什么是“>>"应该是`>>'在嵌套模板参数列表中"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:模板中的模板:为什么是“>>"应该是`>>'在嵌套模板参数列表中"
基础教程推荐
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01