Declaration & Initialization
return-type (*function-pointer-name)(param1-type, param2-type, ...) = XXX
(ex1) General : int (*fp)(double, double) = 0x00;
(ex2) Class Member function : int (TmpClass::* fp2)(double, double) = 0x00;
(ex3) Class const Member function : int (TmpClass::* fp3)(double, double) const = 0x00;
'Programming > C & C++' 카테고리의 다른 글
error LNK2005: xxxx 이(가) msvcprtd.lib(MSVCP80D.dll)에 이미 정의되어 있습니다. (0) | 2012.08.25 |
---|---|
template 형 typedef (0) | 2011.04.20 |
C++ Inheritance (public, protected, private) (0) | 2011.01.20 |
반올림 함수 (0) | 2011.01.10 |
Core 파일을 gdb에 이용하기 (0) | 2010.08.09 |
댓글