首页 > 代码库 > 静态函数调用非静态函数的小样例

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

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



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