// tt.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" class A { public: void fun() { printf("1111111111"); } static void fun2() { fun(); } }; int _tmain(int argc, _TCHAR* argv[]) { A a; A::fun2(); return 0; }
// tt.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" class A { public: void fun() { printf("1111111111"); } static void fun2(A a) { a.fun(); } }; int _tmain(int argc, _TCHAR* argv[]) { A a; A::fun2(a); return 0; }
版权声明:本文为博主原创文章,未经博主允许不得转载。
时间: 2024-09-30 00:02:46