配对中的错误[关闭]
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了配对中的错误[关闭]相关的知识,希望对你有一定的参考价值。
我已声明以下内容:
set< pair<string, pair< int, vector<int> > > SS;
为什么我会收到以下错误?
temp.cpp: In function ‘int main()’:
temp.cpp:13:50: error: template argument 1 is invalid
set< pair<string, pair< int, vector<int> > > SS;
^
temp.cpp:13:50: error: template argument 2 is invalid
temp.cpp:13:50: error: template argument 3 is invalid
答案
你错过了一个>
。您的代码应如下所示:
set< pair<string, pair< int, vector<int> > > > SS;
以上是关于配对中的错误[关闭]的主要内容,如果未能解决你的问题,请参考以下文章