RT:
1、使用attribute关键字声明constructor和destructor:
__attribute((constructor))void before()
{
printf("before main\n");
}
2、全局变量初始化
3、atexit
参考链接:
https://www.jianshu.com/p/37f18b7d0cca
https://www.cnblogs.com/klcf0220/p/5663487.html
RT:
1、使用attribute关键字声明constructor和destructor:
__attribute((constructor))void before()
{
printf("before main\n");
}
2、全局变量初始化
3、atexit
参考链接:
https://www.jianshu.com/p/37f18b7d0cca
https://www.cnblogs.com/klcf0220/p/5663487.html
本文标题:在main函数之前运行的函数2020-05-04
本文链接:https://www.haomeiwen.com/subject/pipeghtx.html
网友评论