Argument Dependent Lookup (ADL, a.k.a. Koenig Lookup) 解析 (1)
Roger([email protected])ADL,参数相关查找,也称作为Koenig查找(以AndrewKoenig的名字命名,有兴趣可以看ScottMeyer的文章TheMostImportantC++People...Ever),是指在编译器对无限定域的函数调用进行名字查找时,所应用的一种查找规则。f(x, y, z); // unqualifiedN::f(x, y, z);