两个对象间的私有成员变量的拷贝,用的是友元函数的机制。但编译却产生
cpp(19) : error C2027: use of undefined type 'floatset'
G:\vc\3.3.cpp(2) : see declaration of 'floatset'
的错误 哪位大虾给指点指点啊。。。菜鸟小弟实在搞不懂啊
#include<iostream.h>
class floatset;
class Intset
{
private:
int num[3];
public:
Intset ( int x,int y, int z)
{
num[0]=x;
num[1]=y;
num[2]=z;
}
void print( )
{
for(int i=0;i<3;i++)
cout<<num[i];
}
friend void floatset::settofloat(Intset &set);
};
class floatset
{
private:
float num[3];
public:
floatset ( float x,float y, float z)
{
num[0]=x;
num[1]=y;
num[2]=z;
}
void print()
{
for(int j=0;j<3;j++)
cout<<num[j];
}
void settofloat(Intset &set)
{
num[0]=set.num[0];
num[1]=set.num[1];
num[2]=set.num[2];
}
};
void main()
{
floatset t(1.0,2.0,3.0);
t.print();
Intset c(7,8,9);
t.settofloat(c);
t.print();
}