template <typename T> int compare<std::vector<T>>(const std::vector<T> &lhs, const std::vector<T> &rhs);有什么错误
时间: 2023-09-13 21:12:30 浏览: 162
无法从 int? 转换为 int 运行时出现错误
在模板函数的函数名中,应该使用模板参数名 `T`,而不是具体的类型 `std::vector<T>`。因此,正确的写法应该是:
```
template <typename T>
int compare(const std::vector<T> &lhs, const std::vector<T> &rhs);
```
或者使用 `typename` 的简化形式:
```
template <class T>
int compare(const std::vector<T> &lhs, const std::vector<T> &rhs);
```
这样定义的模板函数可以比较两个 vector 容器内的元素是否相等。
阅读全文