namespace { class A { } ; }
void foo ( A ) // _Z3fooN12_GLOBAL__N_11AE
{ ; }
显然,该函数的符号将引用 A 的名称,它是唯一命名的命名空间的成员(由于this)。
foo 的联系是什么?
namespace { class A { } ; }
void foo ( A ) // _Z3fooN12_GLOBAL__N_11AE
{ ; }
显然,该函数的符号将引用 A 的名称,它是唯一命名的命名空间的成员(由于this)。
foo 的联系是什么?