以下是引用wangyaomin在2010-7-1 23:28:05的发言:
“CFILEView”: 不是类或命名空间名称。大家帮我看看这是什么错误?如何解决啊?谢谢大家了!
建议看看MSDN:
Error Message
'identifier' : is not a class or namespace name
Syntax requires a class, structure, union, or namespace name.
The following sample generates C2653:
CopyCode imageCopy Code
// C2653.cpp
// compile with: /c
class yy {
void func1(int i);
};
void xx::func1(int m) {}
// C2653
void yy::func1(int m) {}
// OK