gpt4 book ai didi

c++ - 可以重命名 STL vector 吗?

转载 作者:塔克拉玛干 更新时间:2023-11-03 08:04:58 26 4
gpt4 key购买 nike

我正在处理一个非常大且旧的 C++ 项目。 “vector ”一词已被广泛使用。我现在正尝试使用 STL vector 向项目添加新功能。这是行不通的。另外,我只允许修改特定部分的代码,所以我不能改变他们对“vector”的使用。

有没有办法重命名STL vector 并使用它?

最佳答案

使用C++ namespaces .

#include <vector>

// note the absence of `using namespace std;` line

int main() {
// note the `std::` qualification
std::vector<int> x;

// ...
}

关于c++ - 可以重命名 STL vector 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9622183/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com