问题描述 MFC中添加一个类,在另一个类中使用时出现错误,好像没有识别 我新建的类类名是OLSRGram 在另一个类中我构造这个类的对象OLSRGram olsr 调用 olsr.olsr_messagetype等等 出现错误:left of '.olsr_data' must have class/struct/union type F:SnifferCapPackView.cpp(150) : error C2228: left of '.olsr_datalen' must have cl
问题描述 类模板使用时遇到undefined reference to的错误 #include using namespace std; const int Max=20; template class stack { private: T s[Max]; int index; public: int getindex() { return index; } void push(T a) { s[index]=a; index ++; } T pop(){ return s[index--];