我想以一种很好的方式初始化一个指针数组..比如
handler[numberOfIndexes] = {&bla, &ble, &bli, &blo , &blu};
但它确实以这种方式运作。显然,我得到一个错误,因为我试图在一个指向函数的指针中放置一个函数指针数组:
cannot convert ‘<brace-enclosed initializer list>’ to ‘void (A::*)()’ in assignment
所以,这里是您要测试的代码:
#include <iostream>
#include <list>
using namespace std;
class A
{
private:
void first();
void second();
void third ();
// and so on
void(A::*handlers[4])(void);
public:
A();
};
void A::first()
{
}
void A::second()
{
}
void A::third()
{
}
A::A()
{
//this is ugly
handlers[0] = &A::first;
handlers[1] = &A::second;
handlers[2] = &A::third;
//this would be nice
handlers[4] = {&A::first,&A::second,&A::third,0};//in static this would work, because it would be like redeclaration, with the type speficier behind
}
int main()
{
A sup;
return 0;
}
更新: 在Qt中,这不起作用。 我明白了:
syntax error: missing ';' before '}'
如果我改为
A::A() : handlers ({&A::first, &A::second, &A::third, 0})//notice the parentheses
然后发生这种情况
Syntax Error: missing ')' before '{'
Warning: The elements of the array "A :: Handlers" are by default "initialized.
那么,Qt的问题是什么?
到此为止,你应该明白我想做什么。只需对指针数组进行一次很好的初始化。 谢谢。
答案 0 :(得分:6)
只使用实际的初始化,而不是赋值(无法将数组赋值)。
A::A() : handlers {&A::first, &A::second, &A::third, 0} {}