如何让一段程序在main函数之前执行

方法一:

全局变量的构造函数,会在main之前执行。

#include <iostream>
using namespace std;

class app
{
public:
    //构造函数
    app()
    {
        cout<<"First"<<endl;
    }
};

app a;  // 申明一个全局变量

int main()
{
    cout<<"Second"<<endl;
    return 0;
}

方法二:

全局变量的赋值函数,会在main之前执行。(C中好像不允许通过函数给全局变量赋值)

#include <iostream>
using namespace std;

int f(){
    printf("before");
    return 0;
}

int _ = f();

int main(){
    return 0;
}

方法三:

如果是GNUC的编译器(gcc,clang),就在你要执行的方法前加上 __attribute__((constructor))

#include<stdio.h>

__attribute__((constructor)) void func()
{
    printf("hello world\n");
}

int main()
{
    printf("main\n"); //从运行结果来看,并没有执行main函数
}

同理,如果想要在main函数结束之后运行,可加上__sttribute__((destructor)).

#include<stdio.h>

void func()
{
    printf("hello world\n");
    //exit(0);
    return 0;
}

__attribute((constructor))void before()
{
    printf("before\n");
    func();
}


__attribute((destructor))void after()
{
    printf("after\n");

}

int main()
{
    printf("main\n"); //从运行结果来看,并没有执行main函数
}

 

 

参考链接:

1. CSDN_darmao-不执行main函数可以执行一段程序吗?

2. CSDN_xuhongtao123459-如何让一段程序在main函数之前执行

3. 知乎-C/C++中如何在main()函数之前执行一条语句?

原文链接: https://www.cnblogs.com/lfri/p/12421251.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍;

也有高质量的技术群,里面有嵌入式、搜广推等BAT大佬

    如何让一段程序在main函数之前执行

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/371315

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年3月3日 上午10:43
下一篇 2023年3月3日 上午10:43

相关推荐