A::A();

来源:互联网 发布:spycall软件 编辑:程序博客网 时间:2024/06/08 13:47
// ClassA.cpp : Defines the entry point for the console application.//#include "stdafx.h"class A{public:A(){printf("A::A()\n");}};void A(){printf("global A()\n");}int main(int argc, char* argv[]){A::A();A();//printf("Hello World!\n");return 0;}/*A::A()global A()Press any key to continue*/

原创粉丝点击