按着老师写的,怎么报错呢?
#ifndef STUDENT_H
#define STUDENT_H
#include"Time.h"
class Match
{public:
Match (int hour, int min, int sec);
void testTime ();
//void printTime (Time &t);
private:
Time m_tTimer;
};
#endif
错误 1 error C2146: 语法错误: 缺少“;”(在标识符“m_tTimer”的前面) d:\vccodes\模板篇\模板篇\match.h
错误 2 error C4430: 缺少类型说明符 - 假定为 int。注意: C++ 不支持默认 int d:\vccodes\模板篇\模板篇\match.h
rootclass
相关分类