码迷,mamicode.com
首页 > 其他好文 > 详细

怎样使代码在main函数前执行,怎样使代码在main函数之后执行

时间:2014-06-05 02:13:46      阅读:263      评论:0      收藏:0      [点我收藏+]

标签:des   c   style   class   blog   code   

本文为senlie原创,转载请保留此地址:http://blog.csdn.net/zhengsenlie


网上有说可以用

__attribute__ ((constructor)) 来让函数在main函数之前执行,

__attribute__ ((destructor)) 来让函数在main函数之后执行。

比如说像下面这样声明函数

void before(void) __attribute__ ((constructor));

void after(void) __attribute__ ((destructor)

不过这不是C/C++标准,它用GCC可能正常编译通过,但用其它的编译器不一定可以编译通过


在标准C/C++中

可以用global variable 或static variable来让代码在main函数之前执行

可以用atexit来让函数在main函数之后执行

#include <iostream>
using namespace std;

int before_main(){
	cout << "before main" << endl;
	return 1;
}
static int a = before_main();

void after_main(){
	cout << "after main" << endl;
}

int main(int argc, char *argv[])
{
	cout << "main" << endl;
	atexit(after_main);
	system("pause");
}



怎样使代码在main函数前执行,怎样使代码在main函数之后执行,布布扣,bubuko.com

怎样使代码在main函数前执行,怎样使代码在main函数之后执行

标签:des   c   style   class   blog   code   

原文地址:http://blog.csdn.net/zhengsenlie/article/details/27108921

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!