天天看點

c++primer第十四章--c++代碼重用(一)

一、組合

(1)組合是has-a的關系,即建立一個包含其他類對象的類。

(2)使用公有繼承時,類可以獲得接口,但使用組合時,類可以獲得實作,但不能獲得接口,一般通過實作來調用類的方法。

(3)将typedef放在類定義的私有部分意味可以在類中使用,explicit可以關閉隐式轉換,但可以顯示調用。用const可以限制資料的修改。

關于組合的初始化和限制:

1、初始化被包含的對象

對于繼承的對象,構造函數在成員初始化清單使用類名調用特定的構造函數。初始化成員對象,在初始化清單中使用對象名。

不使用初始化清單,将調用相應的預設的構造函數。

2、使用被包含的對象的接口

被包含對象的接口不是公有的,但可以在類方法中使用它們。

關于組合的例子:

//student.h

#ifndef _STUDENT_H_
#define _STUDENT_H_

#include <iostream>
#include <string>
#include <valarray>

using namespace std;

class Student
{
private:
    typedef valarray<double> ArrayDb;
    string name;
    ArrayDb scores;
    ostream & arr_out(ostream &os) const;
public:
    Student():name("Null Student"),scores(){}
    explicit Student(const string &s):name(s),scores() {}
    explicit Student(int n):name("NUll"),scores(n) {}
    Student(string &s,const ArrayDb &a):name(s),scores(a){  }
    Student(const string &s,int n):name(s),scores(n) {}
    Student(const char *str,const double *pd,int n):name(str),scores(pd,n) {}
    ~Student() { }
    double Average() const;
    const string &Name() const;
    double &operator[](int i);
    double operator[](int i) const;

    friend istream &getline(istream &in,Student &stu);
    friend istream &operator>>(istream &in,Student &stu);
    friend ostream &operator<<(ostream &out,const Student &stu);

};

#endif
           

//student.cpp

#include "student.h"
#include <iostream>

using namespace std;

double Student::Average() const
{

    if(scores.size() > )
    {
        return scores.sum() /scores.size(); //包含類對象時,在類方法中可以調用類對象的方法。
    }
    else
    {
        return ;
    }
}

const string &Student::Name() const
{

    return name;
}

double &Student::operator[](int i)
{
    return scores[i];
}

double Student::operator[](int i) const
{
    return scores[i];
}

ostream &Student::arr_out(ostream &os) const
{
    int i;
    int lim = scores.size();
    if(lim > )
    {
        for(i = ; i < lim; i++)
        {

            os << scores[i] <<" ";
            if(i %  == )
            {
                os << endl;
            }
        }

        if( i %  != )
        {
            os << endl;
        }
    }
    else
    {
        os << "empty array";
    }

    return os;
}

istream &operator>>(istream &is,Student &stu)
{
    is >> stu.name;
    return is;
}

istream &getline(istream &is,Student &stu)
{
    getline(is,stu.name);
    return is;
}

ostream &operator<<(ostream &out,const Student &stu)
{
    out << "Scores for " << stu.name << endl;
    stu.arr_out(out);
    return out;
}
           

//main.cpp

#include "student.h"
#include <iostream>

using namespace std;

void set(Student &s,int n);
const int pup = ;
const int qui = ;

int main()
{
    Student ada[] = {Student(),Student(),Student()};
    int i;
    for(int i= ; i < ; ++i)
    {
        set(ada[i],);
    }
    cout << "\nStudent List : \n";
    for(i =  ; i < ; i++)
    {

        cout << endl << ada[i];
        cout << "average: " << ada[i].Average() << endl;
    }
    cout << "Done.\n";
    return ;
}

void set(Student &s,int n)
{
    cout << "Please enter ther student's name:";
    getline(cin,s);
    cout << "Please enter  " << n << "quiz scores" << endl;
    for(int i = ; i < n; i++)
    {
        cin >> s[i];
    }
    while(cin.get() != '\n')
    continue;
}

           

二、私有繼承(實作has-a的關系)

使用私有繼承時,基類的公有成員或者保護成員将成為派生類的私有成員。

關于私有繼承實作has-a關系的文法說明:

1、初始化基類元件

使用初始化清單,使用類名而不是使用對象名來表示構造函數。

2、隻能在派生類的方法中使用基類的方法,使用類名和作用域限定符來調用基類的方法。

3、通路基類對象

由于基類的對象沒有名稱,但this指針指向用來調用的對象,是以使用強制類型轉換轉換,将派生類指針轉換為基類指針。

4、通路基類的友元函數

顯示的将派生類對象轉換為基類的引用或者指針,進而調用友元函數。

在多重繼承中,顯示調用可以防止二義性的産生,導緻的遞歸調用。

問題:關于使用包含還是私有繼承?

通常,應使用包含來建立has-a的關系,如果新類需要通路原有類的保護成員,或者重新定義許函數,則應使用私有繼承。

//使用私有繼承的Student的類

//Student.h

ifndef _STUDENT_H_
#define _STUDENT_H_

#include <iostream>
#include <valarray>
#include <string>

using namespace std;

class Student:private string,private valarray<double>
{
private:
    typedef valarray<double>ArrayDb;
    ostream &arr_out(ostream &os) const;
public:
    Student():string("NUll Student"),ArrayDb() 
    {

    }
    explicit Student(const string &s):string(s),ArrayDb()
    {

    }
    explicit Student(int n):string("Null Student"),ArrayDb(n) // 關閉隐式轉換
    {

    }
    Student(const string &s,int n):string(s),ArrayDb(n)
    {

    }
    Student(const string &s,const ArrayDb &a):string(s),ArrayDb(a)
    {

    }
    Student(const char *str,const double *pd,int n):string(str),ArrayDb(pd,n)
    {

    }
    ~Student()
    {

    }
    double Average() const;
    double &operator[](int i);
    double operator[](int i)const;
    const string &Name() const;

    friend istream &operator>>(istream &is,Student &stu);
    friend istream &getline(istream &is,Student &stu);
    friend ostream &operator<<(ostream &out,const Student &stu);
};


#endif
           

//student.cpp

#include "student.h"
#include <iostream>

using namespace std;

double Student::Average()const
{

    if(ArrayDb::size() > )
    {
        return ArrayDb::sum() / ArrayDb::size();//沒有對象名,使用類名加::來實作調用

    }
    else
    {
        return ;
    }
}

const string &Student::Name() const
{

    return (const string &)*this;
}
double &Student::operator[](int i)
{
    return ArrayDb::operator[](i);
}

double Student::operator[](int i)const
{
    return ArrayDb::operator[](i);
}
ostream &Student::arr_out(ostream &os)const
{

    int i;
    int lim = ArrayDb::size();
    if(lim > )
    {
        for(i = ; i < lim; i++)
        {
            os<< ArrayDb::operator[](i) << " ";
            if(i %  == )
            {
                os << endl;
            }
        }
        if(i %  != )
        {
            os << endl;
        }
    }
    else
    {
        os << " empty array";
    }

    return os;
}

istream &operator>>(istream &is,Student &stu)
{
    is >>(string &)stu;
    return is;
}

istream &getline(istream &is,Student &stu)
{
    getline(is,(string &)stu);
    return is;
}
ostream &operator<<(ostream &os,const Student &stu)
{
    os << "Scores for" << (const string &)stu << ":\n";
    stu.arr_out(os);
    return os;
}

           

//main.cpp

#include <iostream>
#include "student.h"

using namespace std;

void set(Student &sa,int n)
{
    cout << "Please enter the student's name: ";
    getline(cin,sa);
    cout << "Please enter" << n << "quzi scores:" << endl;
    for(int i = ; i < n ; i++)
    {
        cin >> sa[i];
    }
    while(cin.get() != '\n')
        continue;
}

int main()
{
    Student ada[] = {Student(),Student(),Student()};

    int i;

    for(i = ; i < ; i++)
    {
        set(ada[i],);
    }
    cout << "\nStudent List:" << endl;
    for(i = ; i < ;i++)
    {
        cout << ada[i].Name() << endl;
    }
    cout << "\nResults:";
    for(i = ; i < ;i++)
    {
        cout << endl << ada[i];
        cout << "average: " << ada[i].Average() << endl;
    }
    cout << "Done.\n";

    return ;
}
           

繼續閱讀