s********9 发帖数: 586 | 1 刚刚开始骑驴找马,今天 和一个recruiter聊了一会,他问了几个简单的c++问题,
其中最后一个题没答出来,所以过来请教一下
题目是 how to print "hello world" before execution of main function? |
d****o 发帖数: 1055 | 2 #include
using std::cout;
using std::endl;
class thing
{
public:
thing(){cout << "hello, world" << endl;};
};
thing myclass;
int main(void)
{
cout << "Started" << endl;
return 0;
}
【在 s********9 的大作中提到】 : 刚刚开始骑驴找马,今天 和一个recruiter聊了一会,他问了几个简单的c++问题, : 其中最后一个题没答出来,所以过来请教一下 : 题目是 how to print "hello world" before execution of main function?
|
O*******O 发帖数: 22 | |
s********9 发帖数: 586 | 4 懂了,多谢大牛!!
【在 d****o 的大作中提到】 : #include : using std::cout; : using std::endl; : class thing : { : public: : thing(){cout << "hello, world" << endl;}; : }; : thing myclass; : int main(void)
|
C***U 发帖数: 2406 | 5 学习了
【在 d****o 的大作中提到】 : #include : using std::cout; : using std::endl; : class thing : { : public: : thing(){cout << "hello, world" << endl;}; : }; : thing myclass; : int main(void)
|
w********s 发帖数: 1570 | 6 global var/file static var.
搞清楚有些变量在main前初始化就可以。 |