私は次のように書きましたが、何らかの理由で、InstructionVal(b)の呼び出しは無効です。インテリセンスが吐き出されています:
イニシャライザメンバーNPPInstructionDef::InstructionValには()のみが許可されます
問題のあるコードは次のとおりです。
//Single Instruction Definition for Instruction Dictionary
typedef struct NPPInstructionDef
{
const char* InstructionName;
const unsigned char* InstructionVal[];
NPPInstructionDef(const char* a, const unsigned char* b[]): InstructionName(a), InstructionVal()
{
}
}NPPInstruction;
何か案は?ありがとう。