静态函数调用非静态函数的小样例

// 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;
}



posted @ 2017-08-08 09:23  mfmdaoyou  阅读(450)  评论(0编辑  收藏  举报