首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > VC >

VC++2005中托管类的拷贝构造函数应该如何写

2012-01-12 
VC++2005中托管类的拷贝构造函数应该怎么写?例如:C/C++ codeusing namespace System ref class Person{ p

VC++2005中托管类的拷贝构造函数应该怎么写?
例如:

C/C++ code
using namespace System; ref class Person              { public:    string ^name;    float fFaceLength;    float fFaceWidth;Public:    Person(void);}


请问这个Person类的拷贝构造函数怎么写,另外怎么重载它的赋值操作符"operator="
谢谢!

[解决办法]
name 的string要赋值
float类型直接=

operator=类似拷贝构造
[解决办法]
.H文件:
C/C++ code
#pragma onceref class Person{public:    double   name;    float fFaceLength;    float fFaceWidth;public:    Person(void);    Person ( Person% other );    Person% operator =( Person% other );}; 

热点排行