c – 为什么全局命名空间中的sort函数?
作者:互联网
为什么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
解决方法:
sort不在全局命名空间中,它在std中.但是,vector :: begin()的结果类型也可以是std(这是依赖于实现的).如果是这样,则ADL(参数依赖查找)找到std :: sort.
如果您不希望ADL找到std :: sort,那么您可以进行限定调用而不是非限定的调用::: sort(array.begin(),array.end()).
标签:c,c-standard-library 来源: https://codeday.me/bug/20190728/1565016.html