C++中在main函数体为空的情况打印出字符串"GeeksforGeeks"
本文翻译自:
translated By qiaghaohao
正文:
写一个C++程序,在main函数体为空的情况下打印出字符串"GeeksforGeeks"。不允许在
main函数中写任何语句。
一种方法是给一个函数应用构造函数属性,使得此函数在main函数之前执行,代码如下:
#includeusing namespace std; /* Apply the constructor attribute to myStartupFun() so that it is executed before main() */void myStartupFun (void) __attribute__ ((constructor)); /* implementation of myStartupFun */void myStartupFun (void){ cout << "GeeksforGeeks";} int main (){ }
以上方法只在GCC编译器上有效,下面是另一个有趣的方法来实现此功能,代码如下:
#include这个方法的思想是产生一个类,在构造函数中包含一个cout声明,然后一个定义类的全局对象。当对象被创建using namespace std; class MyClass{public: MyClass() { cout << "GeeksforGeeks"; }}m; int main(){ }
时,构造函数被调用,从而打印出了"GeeksforGeeks"。