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 ạ.

83% thành viên diễn đàn không hỏi bài tập, còn bạn thì sao?