为什么 C++ 的全局命名空间中有排序函数?为什么这段代码会编译?
#include <iostream>
#include <vector>
int main() {
std::vector<int> array(10);
sort(array.begin(), array.end());
}
PS:clang++ --std=c++11 --stdlib=libc++ ./test.cpp
为什么 C++ 的全局命名空间中有排序函数?为什么这段代码会编译?
#include <iostream>
#include <vector>
int main() {
std::vector<int> array(10);
sort(array.begin(), array.end());
}
PS:clang++ --std=c++11 --stdlib=libc++ ./test.cpp