鱼C论坛

 找回密码
 立即注册
查看: 1238|回复: 4

c++问题 静态属性与静态方法 编译不通过求解

[复制链接]
发表于 2015-3-4 21:21:31 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#include  <iostream>
#include  <string>

class Pet
{
public:
        std::string petname;
        static int getcount(void);
        Pet(std::string petname);
        ~Pet();
private:
        static int count;
};

Pet::Pet(std::string petname)
{
        this->petname = petname;
        std::cout << "成功诞生了一只" << petname << std::endl;
        count++;
}

Pet::~Pet()
{
        count--;
}
int Pet::getcount(void)
{
        return count;
}
//''''''''狗  Dog
class Dog:public Pet
{
public:
        Dog(std::string petname);
        ~Dog();
};
Dog::Dog(std::string petname): Pet(petname)
{
}
Dog::~Dog()
{
        std::cout << "死掉了一只" << Pet::petname<< std::endl;
}
//'''''''''Dog   狗
//'''''''''cat  猫

class Cat :public  Pet
{
public:
        Cat(std::string petname);
        ~Cat();
};
Cat::Cat(std::string petname) : Pet(petname)
{
}

Cat::~Cat ()
{
        std::cout << "死掉了一只" << Pet::petname << std::endl ;
}

int main(void)
{
        Dog dog("狗");
        return 0;
}

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2015-3-5 10:35:15 | 显示全部楼层
Pet里的静态变量count没有初始化

点评

我很赞同!: 5.0
我很赞同!: 5
+1,很好  发表于 2015-3-8 20:56
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2015-3-6 17:27:21 | 显示全部楼层
解决了吗
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2015-3-6 21:15:02 | 显示全部楼层
用一下代码格式+注释会更美观哦!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-25 17:49

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表