标题: 关于 inside the c++ object model 7.1 [打印本页] 作者: bruceteen 时间: 2013-11-09 09:47 标题: 关于 inside the c++ object model 7.1 偶然间看到 inside the c++ object model 7.1
参见 http://www.blogbus.com/fxl-logs/3600446.html
说是 scope of the template definiton 和 scope of the template instantiation 有区别
我写段代码
在MinGW4.8.1上,发现都调用的是double foo(double)。这个结果和《inside the c++ object model 7.1》讲的不符合呀,怎么回事?
当然,我也看到有人挺G++,说若《inside the c++ object model 7.1》正确,则会导致
ScopeRules<int> a;
extern int foo(int);
ScopeRules<int> b;
复制代码
中 a 和 b 为两个不同的类型,因为它们的成员函数 type type_dependent() 不同。
请问,这属于g++的bug,还是《inside the c++ object model 7.1》说的本身就不对?也有可能是我理解错了?作者: myworkstation 时间: 2013-11-09 09:47
Inside The C++ Object Model这本书在1996年就写成了,而那时还没有正式的C++规范出现。模板这块内容在标准化过程中变化是非常大的。参与“C++ Templates"这本书的9.5章后记中有如下记载:“非依赖型名称和9.4.2小节讨论的依赖型基类“的名称查找规则是C++标准委员会在1993年引入的。Bjarne Stroustrup在1994年初出版的[StroustrupDnE]首次给出了这些内容。而惠普wcngd1997年初才把它引入C++编译器。”,根据以上内容推断Inside The C++ Object Model关于你说的这个问题的描述应该是不准确的。书中至少没有准确描述涉及name lookup时的"Two Phase Lookup"问题。
14.6.4.2 Candidate functions
For a function call that depends on a template parameter, if the function name is an unqualified-id but not a template-id, the candidate functions are found using the usual lookup rules (3.4.1, 3.4.2) except that:
— For the part of the lookup using unqualified name lookup (3.4.1), only function declarations with external linkage from the template definition context are found.
— For the part of the lookup using associated namespaces (3.4.2), only function declarations with external linkage found in either the template definition context or the template instantiation context are found. 作者: bruceteen 时间: 2013-11-09 10:03
收回
当然,我也看到有人挺G++,说若《inside the c++ object model 7.1》正确,则会导致
ScopeRules<int> a;
extern int foo(int);
ScopeRules<int> b;
中 a 和 b 为两个不同的类型,因为它们的成员函数 type type_dependent() 不同。