std::vector<std::string,std::vector<std::string>>
时间: 2023-11-17 09:07:35 浏览: 138
std::vector排序详解
4星 · 用户满意度95%
This code is not valid as the second template argument of std::vector should be a single type, not another vector.
To create a vector of vectors of strings, you could use:
std::vector<std::vector<std::string>> myVector;
阅读全文