文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>gcc中函数或者变量的weak属性

gcc中函数或者变量的weak属性

时间:2010-06-05  来源:harry_he


gcc reference里提到:

A function with this attribute has its name emitted as a weak
symbol instead of a global name. This is primarily for the naming
of library routines that can be overridden by user code.

weak symbol
Having two or more global symbols of the same name will not cause a conflict as long as all but one of them are declared as being weak symbols. The linker ignores the definitions of the weak symbols and uses the normal global symbol definition to resolve all references, but the weak symbols will be used if the normal global symbol is not available. A weak symbol can be used to name functions and data that can be overridden by user code. A weak symbol is also referred to as a weak alias, or simply weak.


通过简单的例子可以看出,weak属性可以让编译器在编译的时候忽略函数未定义的错误。

$cat weak.c
extern void foo() __attribute__((weak));
int main() {
   if (foo) foo();
}
$ gcc weak.c -o weak
$ ./weak
$


weak alias 具有和weak symbol类似的作用。
int __centon() { return(100); }
void centon() __attribute__((weak,alias(“__centon”)));
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载