Programming/C++ & Unreal

C++ 함수 포인터 추가

장형이 2018. 3. 23. 21:37

typedef void (*SYS_FUNC)(int);


-> 리턴타입이 void이고 매개변수 타입이 (int)인 함수를 담을수있는


SYS_FUNC




EX)


void Test(int a);




SYS_FUNC pfn = &Test;


(*Test)();






typedef void (CPoint::*FP)(void);


이런식으로 클래스의 멤버함수도 접근가능




typedef void (CPoint::*FP)(void) const;


FP func = &CPoint::Print;


(pt.*func)();


이런식으로..