私は解決策について読みましconst A a[3] = { {0,0}, {1,1}, {2,2} },
たが、私のプログラムconst
では使用できません:
class Paper: public PaperQueue{
...
protected:
typedef int (Utils::*funcPtr) (int, int); //I use external function there
funcPtr p;
Utils* fptr;
public:
int pricefunc(){
addprice = (fptr->*p) (t,price);
}
Paper(int n, unsigned int pr):PaperQueue(n){
...
p=&Utils::commonpricefunc;
}
void Put(int a){
...
}
...
}
class Bank{
...
void Buy(Paper &p){
(/*this function modifies many parameters in 'p'*/)
...
}
...
}
int main(){
Bank B;
int pn=5;
/* ? */ const Paper p[pn] = {{5,15},{5,15},{5,15},{5,15},{5,15}}; /* ? */
int paperloop=0;
...
p[paperloop].Put(p[paperloop].addprice);
B.Buy(p[paperloop]);
...
それは私に多くのエラー(pricefunc()、Put()、Buy()、...)、または単に「可変サイズのオブジェクト 'p'が初期化されていない可能性があります」を与えます。この配列を機能させる方法はありますか? (コンストラクターにパラメーターを渡さなければ、すべて正常に動作します!)