GNU C 的一大特色就是__attribute__
机制。__attribute__
可以设置函数属性(Function Attribute )、变量属性(Variable Attribute )和类型属性(Type Attribute )。
__attribute__
书写特征是:__attribute__
前后都有两个下划线,并切后面会紧跟一对原括弧,括弧里面是相应的__attribute__
参数。
__attribute__((constructor))
先于main()函数调用__attribute__((destructor))
在main()函数后调用
#include <stdio.h>
#include <stdlib.h>
static void before(void) __attribute__((constructor));
static void after(void) __attribute__((destructor));
static void before()
{
printf("before main\n");
}
static void after(void)
{
printf("after main\n");
}
int main()
{
printf("main\n");
return 0;
}
通过参数设置优先级关系
#include <stdio.h>
#include <stdlib.h>
static void before(void) __attribute__((constructor));
static void before3(void) __attribute__((constructor(103)));
static void before2(void) __attribute__((constructor(102)));
static void before1(void) __attribute__((constructor(101)));
static void before2()
{
printf("before 102\n");
}
static void before1()
{
printf("before 101\n");
}
static void before3()
{
printf("before 103\n");
}
static void before()
{
printf("before main\n");
}
int main()
{
printf("main\n");
return 0;
}