模板中的模板:为什么是“>>"应该是`>>'在嵌套模板参数列表中"
我知道当我们在另一个模板中使用模板时,我们应该这样写:
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
.
相关文章