| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 564 人关注过本帖
标题:我是新手,请高手指教!!
取消只看楼主 加入收藏
Forever_U
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2014-4-22
结帖率:100%
收藏
 问题点数:0 回复次数:0 
我是新手,请高手指教!!
调试时都没有错误,就是不能运行!!!为什么呢??

#include"iostream.h"
#include"string.h"
class Animal  //基类名 Animal 的声明
{
private:      //私有数据成员
    int age;
    char *dogname;
public:  //共有函数成员
     Animal(char *dogming,int in_age)
     {
          dogname=new char[strlen(dogming)+1];  // 测试接收数据长度+1
           strcpy(dogname,dogming);     //实现赋值
            age=in_age;               

}
   
     int getage(){return age;}  //返回值 动物的年龄
     char *getname(){return dogname;}  //返回 动物的名字
};


class Dog:public Animal  //派生类 Dog 类的声明和共有继承
{
private:       //新增私有函数
    char *birthplace;
public:     //新增共有函数 birtplace
    Dog(char *dogming, int in_age,char *bir):Animal (dogming,in_age) //调用基类Animal 的共有的函数成员
    {
    birthplace=new char[strlen(birthplace)+1];  //测试长度+1
       strcpy(birthplace,bir);   //赋值
       }

    char *getbirt(){return birthplace;}  //返回 birtplace
};
    void main()
    {
        Dog t("dog",1,"chain");  
        cout<<"狗狗资料:\n小狗名\t年龄\t出生地"<<endl;
        cout<<t.getname()<<"\t"<<t.getage()<<"\t"<<t.getbirt()<<endl;
}
搜索更多相关主题的帖子: private include public return 动物 
2014-04-23 19:24
快速回复:我是新手,请高手指教!!
数据加载中...
 
   



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

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