鱼C论坛

 找回密码
 立即注册
查看: 2417|回复: 1

C++快速入门16讲std::string mouth;这一段代码有什么用?

[复制链接]
发表于 2020-10-9 22:07:12 | 显示全部楼层 |阅读模式

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

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

x
#include<iostream>
#include<string>

class Animal
{
public:
        //std::string mouth;

        void eat();   
        void sleep();
        void drool();
};
class Pig : public Animal
{
public:
        void climb();
};

class Turtle : public Animal
{
public:
        void swim();
};

void Animal::eat()
{
        std::cout<<"I'm eatting!"<<std::endl;
};

void Animal::sleep()
{
        std::cout<<"I'm sleepping!"<<std::endl;
};

C++快速入门16讲的std::string mouth;这段代码我注释掉也一样可以编译通过输出一样的信息,在这里有什么作用啊 感觉不加也可以。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-10-10 09:45:43 | 显示全部楼层
std::string mouth; 在类 Animal 中定义一个std::string 类型的成员变量。
但是无论在基类还是子类的方法中都没有使用到这个成员变量。因此,注释掉这一句,也不影响编译。

如果定义一个方法使用了这个成员变量,则不能注释掉。比如
class Animal
{
   public :
   std::string mouth;
   public:
   void printMouth();
}
void Animal::printMouth()
{
    std::cout << mouth << std::endl;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-12 21:37

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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