这是我的代码:
//test file
#include <iostream>
#include "stat.h"
#include "frequency.h"
using namespace std;
int main(){
cout << "helo"<< endl;
return 0;
}
当我尝试编译时,我得到:
test.cc:7: error: expected unqualified-id before "using"
test.cc:7: error: expected `,' or `;' before "using"
知道这里发生了什么吗?
答案 0 :(得分:8)
它应该是这样的:
class frequency {
...
};
答案 1 :(得分:2)
问题可能是frequency.h
的最后一行出错。