我有一个 Visual Studio 2008 C++03 应用程序,我在其中FooTraits
向一个类提供策略Foo
。
struct FooTraits
{
enum { FooVal = 1 };
};
template< typename traits >
class Foo
{
public:
typedef typename traits::FooVal foo_val; // errors on this line
void FooDo( UINT matrix[ foo_val ] ) { /*...*/ };
};
typedef Foo< FooTraits > Foot;
int main( int argc, char* argv[] )
{
Foot f;
UINT matrix[ Foot::foo_val ] = { /*...*/ };
f.FooDo( matrix );
return 0;
}
但是,我得到了一系列编译器错误typedef
:
error C2146: syntax error : missing ';' before identifier 'foo_val'
error C2838: 'FooVal' : illegal qualified name in member declaration
error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
创建定义固定值的策略的正确方法是什么?