c – 在main之前立即调用函数

前端之家收集整理的这篇文章主要介绍了c – 在main之前立即调用函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
可以在主输入之前立即注册要运行的功能吗?我知道所有全局对象都是在进入main之前创建的,所以我可以将代码放在全局对象的构造函数中,但这并不保证任何特定的顺序.我想做的是将一些注册码放入构造函数中,但是唉,我不知道该放什么:)我想这是高度系统特定的?

解决方法

如果您正在使用 gcc,则可以使用函数上的构造函数属性在main之前调用它(有关更多详细信息,请参阅 documentation).

constructor

destructor

The constructor attribute causes the function to be called automatically before execution enters main (). Similarly,the destructor attribute causes the function to be called automatically after main () has completed or exit () has been called. Functions with these attributes are useful for initializing data that will be used implicitly during the execution of the program.

原文链接:https://www.f2er.com/c/118631.html

猜你在找的C&C++相关文章