【day0404 C++】类的成员函数

1、函数原型必须在类(class)中定义。

2、函数体:

*可以在类中定义函数体

*也可以在外部定义.

3、this指针.

4、const放后面修饰成员函数。


# 一般会把比较短小的函数体放在类中,把比较长的函数的函数体放外部。

# 也可以把函数体都放在外部,这样看起来比较清晰。


Demo:

#include <iostream>
#include <string>
using namespace std;

/*类的成员函数*/

class SalesItem{

public:
        /// 外部成员函数,必须先声明
        void printAverage() const;

        /// 类的内部成员函数
        bool isSameItem(const SalesItem &rhs) const{
            //this:当前对象,this是指针
            return (this->isbn == rhs.isbn);
        }

public:
        std::string isbn;   //书号
        unsigned allSold;   //销量
        double revenue;     //收入
};

/// 外部成员函数,必须先声明
void SalesItem::printAverage() const
{
    //this->isbn = "0000";  const放后面修饰,不能修改。
    cout << "** 平均 **\n";
}


int main()
{
    SalesItem item1, item2;

    item1.isbn = "201-7852-16";
    item1.allSold = 10;
    item1.revenue = 300.00;

    item2.isbn = "201-7852-16";
    item2.allSold = 15;
    item2.revenue = 450.00;

    if (item1.isSameItem(item2)){
        cout << "这两个item是  一样的!\n";
    }else{
        cout << "这两个item是不一样的!\n";
    }

    item1.printAverage();

    return 0;
}
输出:



發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章