![]() |
#2
忘记喧嚣2008-08-20 23:51
|
//student.h(头文件,其中进行类的声明
#include<string> //为什么没有<iostream>
using namespace std.
class Student
{public:void display();
private:
int num;string name;
};
为什么没有<iostream>
???