怎样编写c++语句编写 从键盘中输入数据初始化“类”

不是自己定义数据初始化,是从键盘中输入数据,想输入什么就初始化什么!是定义一个数组“类”!

这里面改了一些东西。就是利用操作符重载。然后再设为友元。我的这个程序是在DEV
C++里面运行的。我试了,在VC
6.0下,不行。不过,语法是书上说的,没有错。可能是因为那个编译器不支持吧。
#include
#include
using
namespace
std;
class
Person
{
string
name;
int
num;
public:
friend
istream&
operator
>>
(istream
&is,
Person
&p);
void
print();
};
void
Person::print()
{
cout<<"your
name
is:"<
>
(istream
&is,
Student
&s);
void
disp1();
};
void
Student
::disp1()
{
//Person::print();
cout<<"your
score
is:"<
>
(istream
&is,
Person
&p)
{
is
>>
p.name
>>
p.num;
return
is;
}
istream&
operator
>>
(istream
&is,
Student
&s)
{
is
>>
s.score
>>
s.classroom;
return
is;
}
int
main()
{
Person
P;
Student
s;
cout
<<
"input
name
and
num:
";
cin
>>
P;
cout
<<
"input
score
and
classroom:
";
cin
>>
s;
P.print();
s.disp1();
system("pause");
return
0;
}
温馨提示:内容为网友见解,仅供参考
第1个回答  2007-11-10
那需要构造函数的创建参数
比如
class a(int a)
{
constructor create(int a);
}

创建的时候就需要
a.create(15);本回答被网友采纳
相似回答