30/09/2018, 18:26
C++:dùng static method truy cập function pointer array
Mình có một class thế này.
class example {
public:
static void accessArray(void) const;
private:
static void (*arrayFuncPtr_[MAX_VALUE]) (void);
}
làm sao method accessArray có thể truy cập đến arrayFuncPtr_ được ạ.
Bài liên quan