我知道当我们在另一个模板中使用模板时,我们应该这样写:
I know that when we are using template inside another template, we should write it like this:
vector
如果我们在没有空格的情况下编写它:
and if we write it without the whitespace:
vector
我们会得到一个错误:
`>>' 应该是嵌套模板参数列表中的 `> >'
`>>' 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
.
这篇关于模板中的模板:为什么是“`>"应该是`>>'在嵌套的模板参数列表中"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!