| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 661 人关注过本帖
标题:拷贝构造函数问题
取消只看楼主 加入收藏
guowei3758
Rank: 2
来 自:陕西咸阳
等 级:论坛游民
帖 子:58
专家分:72
注 册:2010-4-9
结帖率:55.56%
收藏
已结贴  问题点数:20 回复次数:3 
拷贝构造函数问题
#include<iostream>
#include<stdlib.h>
using namespace std;
class date
{
private:
    int year;
    int month;
    int day;
public:
    date()
    {
        year=0;month=0;day=0;     
    }
    inline void birth()
    {
        cout<<"the birthday"<<endl;
        cout<<"please input the year:";
        cin>>year;
        cout<<"please input the month:";
        cin>>month;
        cout<<"please input the day:";
        cin>>day;
    }
    inline void print2()
    {
        cout<<year<<"."<<month<<"."<<day<<endl;
    }
    ~date()
    {}
};
class people
{
private:
    long int number;
    char sex;
    char id[20];
public:
    date b1;
    people()
    {
            number=0;sex='\0';
    }
    inline void xinxi()
    {
            cout<<"please input the number:";
            cin>>number;
            cout<<"please input the sex:(m/f)";
            cin>>sex;
            cout<<"please input the id:";
            cin>>id;
            b1.birth();
    }
    inline void print1()
    {
        cout<<number<<endl
            <<sex<<endl
            <<id<<endl;
        b1.print2();
    }
    ~people()
    {}
};
int main()
{
    int i,n;
    system("color 9e");
    people p1[1000];
    cout<<"How many people?";
    cin>>n;
    for(i=0;i<n;i++)
    {
        p1[i].xinxi();
    }
    for(i=0;i<n;i++)
    {
        p1[i].print1();
    }
    return 0;
}
怎样加拷贝构造函数
搜索更多相关主题的帖子: 函数 构造 拷贝 
2010-05-08 17:12
guowei3758
Rank: 2
来 自:陕西咸阳
等 级:论坛游民
帖 子:58
专家分:72
注 册:2010-4-9
收藏
得分:0 
回复 2楼 debroa723
是不是只要类中有数组型就必须要拷贝构造函数??
另外,我在类中用的是包含关系中的聚集还是组合??
聚集和组合有设么不同??
2010-05-08 20:16
guowei3758
Rank: 2
来 自:陕西咸阳
等 级:论坛游民
帖 子:58
专家分:72
注 册:2010-4-9
收藏
得分:0 
O,3q,还是很高深啊
2010-05-08 22:34
guowei3758
Rank: 2
来 自:陕西咸阳
等 级:论坛游民
帖 子:58
专家分:72
注 册:2010-4-9
收藏
得分:0 
乱套了
2010-05-09 10:26
快速回复:拷贝构造函数问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.039035 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved