我写程序为什么不能包含我定义文件:
如:
#ifndef DATE_H
#define DATE_H
class date
{int mo,da;
public:
date(int i,int j)
{mo=i;da=j;
}
void display()const
{cout<<mo<<'-'<<endl;
}
};
#endif
#include<iostream.h>
#include "date.h"《编译器说这里有错》
int main(int argc,char *argv[])
{date t(12,31);
t.display();
return 0;
}
我的不能编译编译,运行它,才学c++还好多不知道,谢谢批评~~~~~
谢谢回复