C++编译报错:error: ‘>>’ should be ‘> >’ within a nested template argument list

Posted Dontla

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++编译报错:error: ‘>>’ should be ‘> >’ within a nested template argument list相关的知识,希望对你有一定的参考价值。

[root@ubuntu /arnold_test/test/ttt]9# g++ test.cpp 
test.cpp:23:25: error:>>’ should be ‘> >’ within a nested template argument list
  vector<vector<ky_ai_pos>> m_regions;         //regions of this algorithm, when
                         ^
[root@ubuntu /arnold_test/test/ttt]10# 


解决方法:
> >之间加一个空格

原因:

在使用C++提供的标准模板库(Standard Template Library,STL)时,typename
也就是代码中的菱形符号中的vector是一个STL标准容器,在使用C++11之前标准的编译器将">>“视为移位符号,导致编译错误"error:
‘>>’ should be ‘> >’ within a nested template argument list”.

参考文章:error: ‘>>‘ should be ‘> >‘ within a nested template argument list

以上是关于C++编译报错:error: ‘>>’ should be ‘> >’ within a nested template argument list的主要内容,如果未能解决你的问题,请参考以下文章

C++编译报错:error: ‘>>’ should be ‘> >’ within a nested template argument list

C++编译报错:error: ‘>>’ should be ‘> >’ within a nested template argument list

C++编译报错:error: jump to label ‘xxx‘ [-fpermissive](不能在goto后目标前定义变量)

C++编译报错:error: jump to label ‘xxx‘ [-fpermissive](不能在goto后目标前定义变量)

c++中结构体套结构体用 = {0}初始化编译报错解决办法(用memset或者={})(error: invalid conversion)

Mac上编译C++报错