博客
关于我
C++如何在主函数(main)运行之前打印hello world
阅读量:525 次
发布时间:2019-03-08

本文共 1188 字,大约阅读时间需要 3 分钟。

主函数(main)运行之前打印hello world

主函数(main)运行之前打印hello world

主函数是永远是最先运行的函数,那么如果我们可不可以实现在主函数运行前在屏幕上打印一句话,比如“hello world”呢?

要想做到这点,首先明确一件事:对于在全局作用域中定义的对象,它们的构造函数是在文件中所有其他函数(包括主函数)开始执行前被调用的,对应的,析构函数是在终止main之后调用的。

方法一:

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

#include 
using namespace std;class app{ public: //构造函数 app() { cout<<"First"<

方法二:

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

#include 
using namespace std;int f(){ printf("before"); return 0;}int _ = f();int main(){ return 0;}

方法三:

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

#include
__attribute__((constructor)) void func(){ printf("hello world\n");}int main(){ printf("main\n"); //从运行结果来看,并没有执行main函数}

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

#include
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、https://blog.csdn.net/weixin_43488167/article/details/90649159

2、https://www.cnblogs.com/lfri/p/12421251.html

你可能感兴趣的文章
MSEdgeDriver (Chromium) 不适用于版本 >= 79.0.313 (Canary)
查看>>
MsEdgeTTS开源项目使用教程
查看>>
msf
查看>>
MSSQL数据库查询优化(一)
查看>>
MSSQL数据库迁移到Oracle(二)
查看>>
MSSQL日期格式转换函数(使用CONVERT)
查看>>
MSTP多生成树协议(第二课)
查看>>
MSTP是什么?有哪些专有名词?
查看>>
Mstsc 远程桌面链接 And 网络映射
查看>>
Myeclipse常用快捷键
查看>>
MyEclipse更改项目名web发布名字不改问题
查看>>
MyEclipse用(JDBC)连接SQL出现的问题~
查看>>
mt-datetime-picker type="date" 时间格式 bug
查看>>
myeclipse的新建severlet不见解决方法
查看>>
MyEclipse设置当前行背景颜色、选中单词前景色、背景色
查看>>
Mtab书签导航程序 LinkStore/getIcon SQL注入漏洞复现
查看>>
myeclipse配置springmvc教程
查看>>
MyEclipse配置SVN
查看>>
MTCNN 人脸检测
查看>>
MyEcplise中SpringBoot怎样定制启动banner?
查看>>