我有一门我正在转换的课程:
class MyClass
{
public::
void foo( void )
{
static const char* bar[][3] = { NULL };
func( bar );
}
};
现在我想让 bar 成为一个成员变量,但是因为第一个维度的大小我不能。我也传不过const char** bar[3]
来void func( const char* param[][3] )
。是否有我不知道的解决方法,或者这是我必须使用方法的情况static
?
编辑以回应Jarod42
匹配的初始化bar
是我的问题。我认为我至少应该能够在 ctor 主体中完成此操作,如果不是 ctor 初始化列表。下面是一些测试代码:
static const char* global[][3] = { NULL };
void isLocal( const char* test[][3] )
{
// This method outputs" cool\ncool\nuncool\n
if( test == NULL )
{
cout << "uncool" << endl;
}
else if( *test[0] == NULL )
{
cout << "cool" << endl;
}
}
class parent
{
public:
virtual void foo( void ) = 0;
};
parent* babyMaker( void )
{
class child : public parent
{
public:
virtual void foo( void )
{
static const char* local[][3] = { NULL };
isLocal( local );
isLocal( global );
isLocal( national );
}
child():national( nullptr ){}
private:
const char* (*national)[3];
};
return new child;
}
int main( void )
{
parent* first = babyMaker();
first->foo();
}