第七章 类

练习7.1

使用2.6.1节定义的Sales_data类为1.6节的交易处理程序编写一个新版本。

解:

  1. #include <iostream>
  2. #include <string>
  3. using std::cin; using std::cout; using std::endl; using std::string;
  4. struct Sales_data
  5. {
  6. string bookNo;
  7. unsigned units_sold = 0;
  8. double revenue = 0.0;
  9. };
  10. int main()
  11. {
  12. Sales_data total;
  13. if (cin >> total.bookNo >> total.units_sold >> total.revenue)
  14. {
  15. Sales_data trans;
  16. while (cin >> trans.bookNo >> trans.units_sold >> trans.revenue)
  17. {
  18. if (total.bookNo == trans.bookNo)
  19. {
  20. total.units_sold += trans.units_sold;
  21. total.revenue += trans.revenue;
  22. }
  23. else
  24. {
  25. cout << total.bookNo << " " << total.units_sold << " " << total.revenue << endl;
  26. total = trans;
  27. }
  28. }
  29. cout << total.bookNo << " " << total.units_sold << " " << total.revenue << endl;
  30. }
  31. else
  32. {
  33. std::cerr << "No data?!" << std::endl;
  34. return -1;
  35. }
  36. return 0;
  37. }

练习7.2

曾在2.6.2节的练习中编写了一个Sales_data类,请向这个类添加combine函数和isbn成员。

解:

  1. #include <string>
  2. struct Sales_data {
  3. std::string isbn() const { return bookNo; };
  4. Sales_data& combine(const Sales_data&);
  5. std::string bookNo;
  6. unsigned units_sold = 0;
  7. double revenue = 0.0;
  8. };
  9. Sales_data& Sales_data::combine(const Sales_data& rhs)
  10. {
  11. units_sold += rhs.units_sold;
  12. revenue += rhs.revenue;
  13. return *this;
  14. }

练习7.3

修改7.1.1节的交易处理程序,令其使用这些成员。

解:

  1. #include <iostream>
  2. using std::cin; using std::cout; using std::endl;
  3. int main()
  4. {
  5. Sales_data total;
  6. if (cin >> total.bookNo >> total.units_sold >> total.revenue)
  7. {
  8. Sales_data trans;
  9. while (cin >> trans.bookNo >> trans.units_sold >> trans.revenue) {
  10. if (total.isbn() == trans.isbn())
  11. total.combine(trans);
  12. else {
  13. cout << total.bookNo << " " << total.units_sold << " " << total.revenue << endl;
  14. total = trans;
  15. }
  16. }
  17. cout << total.bookNo << " " << total.units_sold << " " << total.revenue << endl;
  18. }
  19. else
  20. {
  21. std::cerr << "No data?!" << std::endl;
  22. return -1;
  23. }
  24. return 0;
  25. }

练习7.4

编写一个名为Person的类,使其表示人员的姓名和地址。使用string对象存放这些元素,接下来的练习将不断充实这个类的其他特征。

解:

  1. #include <string>
  2. class Person {
  3. std::string name;
  4. std::string address;
  5. };

练习7.5

在你的Person类中提供一些操作使其能够返回姓名和地址。
这些函数是否应该是const的呢?解释原因。

解:

  1. #include <string>
  2. class Person
  3. {
  4. std::string name;
  5. std::string address;
  6. public:
  7. auto get_name() const -> std::string const& { return name; }
  8. auto get_addr() const -> std::string const& { return address; }
  9. };

应该是const的。因为常量的Person对象也需要使用这些函数操作。

练习7.6

对于函数addreadprint,定义你自己的版本。

解:

  1. #include <string>
  2. #include <iostream>
  3. struct Sales_data {
  4. std::string const& isbn() const { return bookNo; };
  5. Sales_data& combine(const Sales_data&);
  6. std::string bookNo;
  7. unsigned units_sold = 0;
  8. double revenue = 0.0;
  9. };
  10. // member functions.
  11. Sales_data& Sales_data::combine(const Sales_data& rhs)
  12. {
  13. units_sold += rhs.units_sold;
  14. revenue += rhs.revenue;
  15. return *this;
  16. }
  17. // nonmember functions
  18. std::istream &read(std::istream &is, Sales_data &item)
  19. {
  20. double price = 0;
  21. is >> item.bookNo >> item.units_sold >> price;
  22. item.revenue = price * item.units_sold;
  23. return is;
  24. }
  25. std::ostream &print(std::ostream &os, const Sales_data &item)
  26. {
  27. os << item.isbn() << " " << item.units_sold << " " << item.revenue;
  28. return os;
  29. }
  30. Sales_data add(const Sales_data &lhs, const Sales_data &rhs)
  31. {
  32. Sales_data sum = lhs;
  33. sum.combine(rhs);
  34. return sum;
  35. }

练习7.7

使用这些新函数重写7.1.2节练习中的程序。

  1. int main()
  2. {
  3. Sales_data total;
  4. if (read(std::cin, total))
  5. {
  6. Sales_data trans;
  7. while (read(std::cin, trans)) {
  8. if (total.isbn() == trans.isbn())
  9. total.combine(trans);
  10. else {
  11. print(std::cout, total) << std::endl;
  12. total = trans;
  13. }
  14. }
  15. print(std::cout, total) << std::endl;
  16. }
  17. else
  18. {
  19. std::cerr << "No data?!" << std::endl;
  20. return -1;
  21. }
  22. return 0;
  23. }

练习7.8

为什么read函数将其Sales_data参数定义成普通的引用,而print函数将其参数定义成常量引用?

解:

因为read函数会改变对象的内容,而print函数不会。

练习7.9

对于7.1.2节练习中代码,添加读取和打印Person对象的操作。

解:

  1. #include <string>
  2. #include <iostream>
  3. struct Person
  4. {
  5. std::string const& getName() const { return name; }
  6. std::string const& getAddress() const { return address; }
  7. std::string name;
  8. std::string address;
  9. };
  10. std::istream &read(std::istream &is, Person &person)
  11. {
  12. return is >> person.name >> person.address;
  13. }
  14. std::ostream &print(std::ostream &os, const Person &person)
  15. {
  16. return os << person.name << " " << person.address;
  17. }

练习7.10

在下面这条if语句中,条件部分的作用是什么?

  1. if (read(read(cin, data1), data2)) //等价read(std::cin, data1);read(std::cin, data2);

解:

read函数的返回值是istream对象,
if语句中条件部分的作用是从输入流中读取数据给两个data对象。

练习7.11 :

在你的Sales_data类中添加构造函数,
然后编写一段程序令其用到每个构造函数。

解:

头文件:

  1. #include <string>
  2. #include <iostream>
  3. struct Sales_data {
  4. Sales_data() = default;
  5. Sales_data(const std::string &s):bookNo(s) { }
  6. Sales_data(const std::string &s, unsigned n, double p):bookNo(s), units_sold(n), revenue(n*p){ }
  7. Sales_data(std::istream &is);
  8. std::string isbn() const { return bookNo; };
  9. Sales_data& combine(const Sales_data&);
  10. std::string bookNo;
  11. unsigned units_sold = 0;
  12. double revenue = 0.0;
  13. };
  14. // nonmember functions
  15. std::istream &read(std::istream &is, Sales_data &item)
  16. {
  17. double price = 0;
  18. is >> item.bookNo >> item.units_sold >> price;
  19. item.revenue = price * item.units_sold;
  20. return is;
  21. }
  22. std::ostream &print(std::ostream &os, const Sales_data &item)
  23. {
  24. os << item.isbn() << " " << item.units_sold << " " << item.revenue;
  25. return os;
  26. }
  27. Sales_data add(const Sales_data &lhs, const Sales_data &rhs)
  28. {
  29. Sales_data sum = lhs;
  30. sum.combine(rhs);
  31. return sum;
  32. }
  33. // member functions.
  34. Sales_data::Sales_data(std::istream &is)
  35. {
  36. read(is, *this);
  37. }
  38. Sales_data& Sales_data::combine(const Sales_data& rhs)
  39. {
  40. units_sold += rhs.units_sold;
  41. revenue += rhs.revenue;
  42. return *this;
  43. }

主函数:

  1. int main()
  2. {
  3. Sales_data item1;
  4. print(std::cout, item1) << std::endl;
  5. Sales_data item2("0-201-78345-X");
  6. print(std::cout, item2) << std::endl;
  7. Sales_data item3("0-201-78345-X", 3, 20.00);
  8. print(std::cout, item3) << std::endl;
  9. Sales_data item4(std::cin);
  10. print(std::cout, item4) << std::endl;
  11. return 0;
  12. }

练习7.12

把只接受一个istream作为参数的构造函数移到类的内部。

解:

  1. #include <string>
  2. #include <iostream>
  3. struct Sales_data;
  4. std::istream &read(std::istream&, Sales_data&);
  5. struct Sales_data {
  6. Sales_data() = default;
  7. Sales_data(const std::string &s):bookNo(s) { }
  8. Sales_data(const std::string &s, unsigned n, double p):bookNo(s), units_sold(n), revenue(n*p){ }
  9. Sales_data(std::istream &is) { read(is, *this); }
  10. std::string isbn() const { return bookNo; };
  11. Sales_data& combine(const Sales_data&);
  12. std::string bookNo;
  13. unsigned units_sold = 0;
  14. double revenue = 0.0;
  15. };
  16. // member functions.
  17. Sales_data& Sales_data::combine(const Sales_data& rhs)
  18. {
  19. units_sold += rhs.units_sold;
  20. revenue += rhs.revenue;
  21. return *this;
  22. }
  23. // nonmember functions
  24. std::istream &read(std::istream &is, Sales_data &item)
  25. {
  26. double price = 0;
  27. is >> item.bookNo >> item.units_sold >> price;
  28. item.revenue = price * item.units_sold;
  29. return is;
  30. }
  31. std::ostream &print(std::ostream &os, const Sales_data &item)
  32. {
  33. os << item.isbn() << " " << item.units_sold << " " << item.revenue;
  34. return os;
  35. }
  36. Sales_data add(const Sales_data &lhs, const Sales_data &rhs)
  37. {
  38. Sales_data sum = lhs;
  39. sum.combine(rhs);
  40. return sum;
  41. }

练习7.13

使用istream构造函数重写第229页的程序。

解:

  1. int main()
  2. {
  3. Sales_data total(std::cin);
  4. if (!total.isbn().empty())
  5. {
  6. std::istream &is = std::cin;
  7. while (is) {
  8. Sales_data trans(is);
  9. if (!is) break;
  10. if (total.isbn() == trans.isbn())
  11. total.combine(trans);
  12. else {
  13. print(std::cout, total) << std::endl;
  14. total = trans;
  15. }
  16. }
  17. print(std::cout, total) << std::endl;
  18. }
  19. else
  20. {
  21. std::cerr << "No data?!" << std::endl;
  22. return -1;
  23. }
  24. return 0;
  25. }

练习7.14

编写一个构造函数,令其用我们提供的类内初始值显式地初始化成员。

  1. Sales_data() : units_sold(0) , revenue(0) { }

练习7.15

为你的Person类添加正确的构造函数。

解:

  1. #include <string>
  2. #include <iostream>
  3. struct Person;
  4. std::istream &read(std::istream&, Person&);
  5. struct Person
  6. {
  7. Person() = default;
  8. Person(const std::string& sname, const std::string& saddr) :name(sname), address(saddr) {}
  9. Person(std::istream &is) { read(is, *this); }
  10. std::string getName() const { return name; }
  11. std::string getAddress() const { return address; }
  12. std::string name;
  13. std::string address;
  14. };
  15. std::istream &read(std::istream &is, Person &person)
  16. {
  17. is >> person.name >> person.address;
  18. return is;
  19. }
  20. std::ostream &print(std::ostream &os, const Person &person)
  21. {
  22. os << person.name << " " << person.address;
  23. return os;
  24. }

练习7.16

在类的定义中对于访问说明符出现的位置和次数有限定吗?
如果有,是什么?什么样的成员应该定义在public说明符之后?
什么样的成员应该定义在private说明符之后?

解:

在类的定义中对于访问说明符出现的位置和次数没有限定

每个访问说明符指定了接下来的成员的访问级别,其有效范围直到出现下一个访问说明符或者达到类的结尾处为止。

如果某个成员能够在整个程序内都被访问,那么它应该定义为public;
如果某个成员只能在类内部访问,那么它应该定义为private

练习7.17

使用classstruct时有区别吗?如果有,是什么?

解:

classstruct的唯一区别是默认的访问级别不同。

练习7.18

封装是何含义?它有什么用处?

解:

将类内部分成员设置为外部不可见,而提供部分接口给外面,这样的行为叫做封装。

用处:

  • 1.确保用户的代码不会无意间破坏封装对象的状态。
  • 2.被封装的类的具体实现细节可以随时改变,而无需调整用户级别的代码。

练习7.19

在你的Person类中,你将把哪些成员声明成public的?
哪些声明成private的?
解释你这样做的原因。

构造函数、getName()getAddress()函数将设为public
nameaddress 将设为private
函数是暴露给外部的接口,因此要设为public
而数据则应该隐藏让外部不可见。

练习7.20

友元在什么时候有用?请分别举出使用友元的利弊。

解:

当其他类或者函数想要访问当前类的私有变量时,这个时候应该用友元。

利:

与当前类有关的接口函数能直接访问类的私有变量。

弊:

牺牲了封装性与可维护性。

练习7.21

修改你的Sales_data类使其隐藏实现的细节。
你之前编写的关于Sales_data操作的程序应该继续使用,借助类的新定义重新编译该程序,确保其正常工作。

解:

  1. #include <string>
  2. #include <iostream>
  3. class Sales_data {
  4. friend std::istream &read(std::istream &is, Sales_data &item);
  5. friend std::ostream &print(std::ostream &os, const Sales_data &item);
  6. friend Sales_data add(const Sales_data &lhs, const Sales_data &rhs);
  7. public:
  8. Sales_data() = default;
  9. Sales_data(const std::string &s):bookNo(s) { }
  10. Sales_data(const std::string &s, unsigned n, double p):bookNo(s), units_sold(n), revenue(n*p){ }
  11. Sales_data(std::istream &is) { read(is, *this); }
  12. std::string isbn() const { return bookNo; };
  13. Sales_data& combine(const Sales_data&);
  14. private:
  15. std::string bookNo;
  16. unsigned units_sold = 0;
  17. double revenue = 0.0;
  18. };
  19. // member functions.
  20. Sales_data& Sales_data::combine(const Sales_data& rhs)
  21. {
  22. units_sold += rhs.units_sold;
  23. revenue += rhs.revenue;
  24. return *this;
  25. }
  26. // friend functions
  27. std::istream &read(std::istream &is, Sales_data &item)
  28. {
  29. double price = 0;
  30. is >> item.bookNo >> item.units_sold >> price;
  31. item.revenue = price * item.units_sold;
  32. return is;
  33. }
  34. std::ostream &print(std::ostream &os, const Sales_data &item)
  35. {
  36. os << item.isbn() << " " << item.units_sold << " " << item.revenue;
  37. return os;
  38. }
  39. Sales_data add(const Sales_data &lhs, const Sales_data &rhs)
  40. {
  41. Sales_data sum = lhs;
  42. sum.combine(rhs);
  43. return sum;
  44. }

练习7.22

修改你的Person类使其隐藏实现的细节。

解:

  1. #include <string>
  2. #include <iostream>
  3. class Person {
  4. friend std::istream &read(std::istream &is, Person &person);
  5. friend std::ostream &print(std::ostream &os, const Person &person);
  6. public:
  7. Person() = default;
  8. Person(const std::string sname, const std::string saddr):name(sname), address(saddr){ }
  9. Person(std::istream &is){ read(is, *this); }
  10. std::string getName() const { return name; }
  11. std::string getAddress() const { return address; }
  12. private:
  13. std::string name;
  14. std::string address;
  15. };
  16. std::istream &read(std::istream &is, Person &person)
  17. {
  18. is >> person.name >> person.address;
  19. return is;
  20. }
  21. std::ostream &print(std::ostream &os, const Person &person)
  22. {
  23. os << person.name << " " << person.address;
  24. return os;
  25. }

练习7.23

编写你自己的Screen类型。

解:

  1. #include <string>
  2. class Screen {
  3. public:
  4. using pos = std::string::size_type;
  5. Screen() = default;
  6. Screen(pos ht, pos wd, char c):height(ht), width(wd), contents(ht*wd, c){ }
  7. char get() const { return contents[cursor]; }
  8. char get(pos r, pos c) const { return contents[r*width+c]; }
  9. private:
  10. pos cursor = 0;
  11. pos height = 0, width = 0;
  12. std::string contents;
  13. };

练习7.24

给你的Screen类添加三个构造函数:一个默认构造函数;另一个构造函数接受宽和高的值,然后将contents初始化成给定数量的空白;第三个构造函数接受宽和高的值以及一个字符,该字符作为初始化后屏幕的内容。

解:

  1. #include <string>
  2. class Screen {
  3. public:
  4. using pos = std::string::size_type;
  5. Screen() = default; // 1
  6. Screen(pos ht, pos wd):height(ht), width(wd), contents(ht*wd, ' '){ } // 2
  7. Screen(pos ht, pos wd, char c):height(ht), width(wd), contents(ht*wd, c){ } // 3
  8. char get() const { return contents[cursor]; }
  9. char get(pos r, pos c) const { return contents[r*width+c]; }
  10. private:
  11. pos cursor = 0;
  12. pos height = 0, width = 0;
  13. std::string contents;
  14. };

练习7.25

Screen能安全地依赖于拷贝和赋值操作的默认版本吗?
如果能,为什么?如果不能?为什么?

解:

能。 Screen的成员只有内置类型和string,因此能安全地依赖于拷贝和赋值操作的默认版本。

管理动态内存的类则不能依赖于拷贝和赋值操作的默认版本,而且也应该尽量使用stringvector来避免动态管理内存的复杂性。

练习7.26

Sales_data::avg_price定义成内联函数。

解:

在头文件中加入:

  1. inline double Sales_data::avg_price() const
  2. {
  3. return units_sold ? revenue/units_sold : 0;
  4. }

练习7.27

给你自己的Screen类添加movesetdisplay函数,通过执行下面的代码检验你的类是否正确。

  1. Screen myScreen(5, 5, 'X');
  2. myScreen.move(4, 0).set('#').display(cout);
  3. cout << "\n";
  4. myScreen.display(cout);
  5. cout << "\n";

解:

增加代码:

  1. #include <string>
  2. #include <iostream>
  3. class Screen {
  4. public:
  5. ... ...
  6. inline Screen& move(pos r, pos c);
  7. inline Screen& set(char c);
  8. inline Screen& set(pos r, pos c, char ch);
  9. const Screen& display(std::ostream &os) const { do_display(os); return *this; }
  10. Screen& display(std::ostream &os) { do_display(os); return *this; }
  11. private:
  12. void do_display(std::ostream &os) const { os << contents; }
  13. ... ...
  14. };
  15. inline Screen& Screen::move(pos r, pos c)
  16. {
  17. cursor = r*width + c;
  18. return *this;
  19. }
  20. inline Screen& Screen::set(char c)
  21. {
  22. contents[cursor] = c;
  23. return *this;
  24. }
  25. inline Screen& Screen::set(pos r, pos c, char ch)
  26. {
  27. contents[r*width+c] = ch;
  28. return *this;
  29. }

测试代码:

  1. int main()
  2. {
  3. Screen myScreen(5, 5, 'X');
  4. myScreen.move(4, 0).set('#').display(std::cout);
  5. std::cout << "\n";
  6. myScreen.display(std::cout);
  7. std::cout << "\n";
  8. return 0;
  9. }

练习7.28

如果movesetdisplay函数的返回类型不是Screen& 而是Screen,则在上一个练习中将会发生什么?

解:

如果返回类型是Screen,那么move返回的是*this的一个副本,因此set函数只能改变临时副本而不能改变myScreen的值。

练习7.29

修改你的Screen类,令movesetdisplay函数返回Screen并检查程序的运行结果,在上一个练习中你的推测正确吗?

解:

推测正确。

  1. #with '&'
  2. XXXXXXXXXXXXXXXXXXXX#XXXX
  3. XXXXXXXXXXXXXXXXXXXX#XXXX
  4. ^
  5. # without '&'
  6. XXXXXXXXXXXXXXXXXXXX#XXXX
  7. XXXXXXXXXXXXXXXXXXXXXXXXX
  8. ^

练习7.30

通过this指针使用成员的做法虽然合法,但是有点多余。讨论显示使用指针访问成员的优缺点。

解:

优点:

程序的意图更明确

函数的参数可以与成员同名,如

  1. void setAddr(const std::string &addr) { this->addr = addr; }

缺点:

有时候显得有点多余,如

  1. std::string getAddr() const { return this->addr; }

练习7.31

定义一对类XY,其中X包含一个指向Y的指针,而Y包含一个类型为X的对象。

解:

  1. class Y;
  2. class X{
  3. Y* y = nullptr;
  4. };
  5. class Y{
  6. X x;
  7. };

练习7.32

定义你自己的ScreenWindow_mgr,其中clearWindow_mgr的成员,是Screen的友元。

解:

  1. #include <vector>
  2. #include <iostream>
  3. #include <string>
  4. class Screen;
  5. class Window_mgr
  6. {
  7. public:
  8. using ScreenIndex = std::vector<Screen>::size_type;
  9. inline void clear(ScreenIndex);
  10. private:
  11. std::vector<Screen> screens;
  12. };
  13. class Screen
  14. {
  15. friend void Window_mgr::clear(ScreenIndex);
  16. public:
  17. using pos = std::string::size_type;
  18. Screen() = default;
  19. Screen(pos ht, pos wd) :height(ht), width(wd), contents(ht*wd,' ') {}
  20. Screen(pos ht, pos wd, char c) :height(ht), width(wd), contents(ht*wd, c) {}
  21. char get() const { return contents[cursor]; }
  22. char get(pos r, pos c) const { return contents[r*width + c]; }
  23. inline Screen& move(pos r, pos c);
  24. inline Screen& set(char c);
  25. inline Screen& set(pos r, pos c, char ch);
  26. const Screen& display(std::ostream& os) const { do_display(os); return *this; }
  27. Screen& display(std::ostream& os) { do_display(os); return *this; }
  28. private:
  29. void do_display(std::ostream &os) const { os << contents; }
  30. private:
  31. pos cursor = 0;
  32. pos width = 0, height = 0;
  33. std::string contents;
  34. };
  35. inline void Window_mgr::clear(ScreenIndex i)
  36. {
  37. Screen& s = screens[i];
  38. s.contents = std::string(s.height*s.width,' ');
  39. }
  40. inline Screen& Screen::move(pos r, pos c)
  41. {
  42. cursor = r*width + c;
  43. return *this;
  44. }
  45. inline Screen& Screen::set(char c)
  46. {
  47. contents[cursor] = c;
  48. return *this;
  49. }
  50. inline Screen& Screen::set(pos r, pos c, char ch)
  51. {
  52. contents[r*width + c] = ch;
  53. return *this;
  54. }

练习7.33

如果我们给Screen添加一个如下所示的size成员将发生什么情况?如果出现了问题,请尝试修改它。

  1. pos Screen::size() const
  2. {
  3. return height * width;
  4. }

解:

纠正:错误为 error: extra qualification ‘Screen::’ on member ‘size’ [-fpermissive]
则应该去掉Screen::,改为

  1. pos size() const{
  2. return height * width;
  3. }

练习7.34

如果我们把第256页Screen类的postypedef放在类的最后一行会发生什么情况?

解:

在 dummy_fcn(pos height) 函数中会出现 未定义的标识符pos。

类型名的定义通常出现在类的开始处,这样就能确保所有使用该类型的成员都出现在类名的定义之后。

练习7.35

解释下面代码的含义,说明其中的TypeinitVal分别使用了哪个定义。如果代码存在错误,尝试修改它。

  1. typedef string Type;
  2. Type initVal();
  3. class Exercise {
  4. public:
  5. typedef double Type;
  6. Type setVal(Type);
  7. Type initVal();
  8. private:
  9. int val;
  10. };
  11. Type Exercise::setVal(Type parm) {
  12. val = parm + initVal();
  13. return val;
  14. }

解:

书上255页中说:

  1. 然而在类中,如果成员使用了外层作用域中的某个名字,而该名字代表一种类型,则类不能在之后重新定义该名字。

因此重复定义Type是错误的行为。

虽然重复定义类型名字是错误的行为,但是编译器并不为此负责。所以我们要人为地遵守一些原则,在这里有一些讨论。

练习7.36

下面的初始值是错误的,请找出问题所在并尝试修改它。

  1. struct X {
  2. X (int i, int j): base(i), rem(base % j) {}
  3. int rem, base;
  4. };

解:

应该改为:

  1. struct X {
  2. X (int i, int j): base(i), rem(base % j) {}
  3. int base, rem;
  4. };

练习7.37

使用本节提供的Sales_data类,确定初始化下面的变量时分别使用了哪个构造函数,然后罗列出每个对象所有的数据成员的值。

解:

  1. Sales_data first_item(cin); // 使用 Sales_data(std::istream &is) ; 各成员值从输入流中读取
  2. int main() {
  3. // 使用默认构造函数 bookNo = "", cnt = 0, revenue = 0.0
  4. Sales_data next;
  5. // 使用 Sales_data(std::string s = ""); bookNo = "9-999-99999-9", cnt = 0, revenue = 0.0
  6. Sales_data last("9-999-99999-9");
  7. }

练习7.38

有些情况下我们希望提供cin作为接受istream&参数的构造函数的默认实参,请声明这样的构造函数。

解:

  1. Sales_data(std::istream &is = std::cin) { read(is, *this); }

练习7.39

如果接受string的构造函数和接受istream&的构造函数都使用默认实参,这种行为合法吗?如果不,为什么?

解:

不合法。当你调用Sales_data()构造函数时,无法区分是哪个重载。

练习7.40

从下面的抽象概念中选择一个(或者你自己指定一个),思考这样的类需要哪些数据成员,提供一组合理的构造函数并阐明这样做的原因。

  1. (a) Book
  2. (b) Data
  3. (c) Employee
  4. (d) Vehicle
  5. (e) Object
  6. (f) Tree

解:

(a) Book.

  1. class Book
  2. {
  3. public:
  4. Book(unsigned isbn, std::string const& name, std::string const& author, std::string const& pubdate)
  5. :isbn_(isbn), name_(name), author_(author), pubdate_(pubdate)
  6. { }
  7. explicit Book(std::istream &in)
  8. {
  9. in >> isbn_ >> name_ >> author_ >> pubdate_;
  10. }
  11. private:
  12. unsigned isbn_;
  13. std::string name_;
  14. std::string author_;
  15. std::string pubdate_;
  16. };

练习7.41

使用委托构造函数重新编写你的Sales_data类,给每个构造函数体添加一条语句,令其一旦执行就打印一条信息。用各种可能的方式分别创建Sales_data对象,认真研究每次输出的信息直到你确实理解了委托构造函数的执行顺序。

解:

总结:使用委托构造函数,调用顺序是:

  • 1.实际的构造函数的函数体。
  • 2.委托构造函数的函数体。

练习7.42

对于你在练习7.40中编写的类,确定哪些构造函数可以使用委托。如果可以的话,编写委托构造函数。如果不可以,从抽象概念列表中重新选择一个你认为可以使用委托构造函数的,为挑选出的这个概念编写类定义。

解:

  1. class Book
  2. {
  3. public:
  4. Book(unsigned isbn, std::string const& name, std::string const& author, std::string const& pubdate)
  5. :isbn_(isbn), name_(name), author_(author), pubdate_(pubdate)
  6. { }
  7. Book(unsigned isbn) : Book(isbn, "", "", "") {}
  8. explicit Book(std::istream &in)
  9. {
  10. in >> isbn_ >> name_ >> author_ >> pubdate_;
  11. }
  12. private:
  13. unsigned isbn_;
  14. std::string name_;
  15. std::string author_;
  16. std::string pubdate_;
  17. };

练习7.43

假定有一个名为NoDefault的类,它有一个接受int的构造函数,但是没有默认构造函数。定义类CC有一个 NoDefault类型的成员,定义C的默认构造函数。

  1. class NoDefault {
  2. public:
  3. NoDefault(int i) { }
  4. };
  5. class C {
  6. public:
  7. C() : def(0) { }
  8. private:
  9. NoDefault def;
  10. };

练习7.44

下面这条声明合法吗?如果不,为什么?

  1. vector<NoDefault> vec(10);//vec初始化有10个元素

解:

不合法。因为NoDefault没有默认构造函数。

练习7.45

如果在上一个练习中定义的vector的元素类型是C,则声明合法吗?为什么?

合法。因为C有默认构造函数。

练习7.46

下面哪些论断是不正确的?为什么?

  • (a) 一个类必须至少提供一个构造函数。
  • (b) 默认构造函数是参数列表为空的构造函数。
  • (c) 如果对于类来说不存在有意义的默认值,则类不应该提供默认构造函数。
  • (d) 如果类没有定义默认构造函数,则编译器将为其生成一个并把每个数据成员初始化成相应类型的默认值。

解:

  • (a) 不正确。如果我们的类没有显式地定义构造函数,那么编译器就会为我们隐式地定义一个默认构造函数,并称之为合成的默认构造函数。
  • (b) 不完全正确。为每个参数都提供了默认值的构造函数也是默认构造函数。
  • (c) 不正确。哪怕没有意义的值也需要初始化。
  • (d) 不正确。只有当一个类没有定义任何构造函数的时候,编译器才会生成一个默认构造函数。

练习7.47

说明接受一个string参数的Sales_data构造函数是否应该是explicit的,并解释这样做的优缺点。

解:

是否需要从stringSales_data的转换依赖于我们对用户使用该转换的看法。在此例中,这种转换可能是对的。null_book中的string可能表示了一个不存在的ISBN编号。

优点:

可以抑制构造函数定义的隐式转换

缺点:

为了转换要显式地使用构造函数

练习7.48

假定Sales_data的构造函数不是explicit的,则下述定义将执行什么样的操作?

解:

  1. string null_isbn("9-999-9999-9");
  2. Sales_data item1(null_isbn);
  3. Sales_data item2("9-999-99999-9");

这些定义和是不是explicit的无关。

练习7.49

对于combine函数的三种不同声明,当我们调用i.combine(s)时分别发生什么情况?其中i是一个Sales_data,而s是一个string对象。

解:

  1. (a) Sales_data &combine(Sales_data); // ok
  2. (b) Sales_data &combine(Sales_data&); // error C2664: 无法将参数 1 从“std::string”转换为“Sales_data &” 因为隐式转换只有一次
  3. (c) Sales_data &combine(const Sales_data&) const; // 该成员函数是const 的,意味着不能改变对象。而 combine函数的本意就是要改变对象

练习7.50

确定在你的Person类中是否有一些构造函数应该是explicit 的。

解:

  1. explicit Person(std::istream &is){ read(is, *this); }

练习7.51

vector将其单参数的构造函数定义成explicit的,而string则不是,你觉得原因何在?

假如我们有一个这样的函数:

  1. int getSize(const std::vector<int>&);

如果vector没有将单参数构造函数定义成explicit的,我们就可以这样调用:

  1. getSize(34);

很明显这样调用会让人困惑,函数实际上会初始化一个拥有34个元素的vector的临时量,然后返回34。但是这样没有任何意义。而string则不同,string的单参数构造函数的参数是const char *,因此凡是在需要用到string的地方都可以用const char *来代替(字面值就是const char *)。如:

  1. void print(std::string);
  2. print("hello world");

练习7.52

使用2.6.1节的 Sales_data 类,解释下面的初始化过程。如果存在问题,尝试修改它。

  1. Sales_data item = {"987-0590353403", 25, 15.99};

解:

Sales_data 类不是聚合类,应该修改成如下:

  1. struct Sales_data {
  2. std::string bookNo;
  3. unsigned units_sold;
  4. double revenue;
  5. };

练习7.53

定义你自己的Debug

解:

  1. class Debug {
  2. public:
  3. constexpr Debug(bool b = true) : hw(b), io(b), other(b) { }
  4. constexpr Debug(bool h, bool i, bool o) : hw(r), io(i), other(0) { }
  5. constexpr bool any() { return hw || io || other; }
  6. void set_hw(bool b) { hw = b; }
  7. void set_io(bool b) { io = b; }
  8. void set_other(bool b) { other = b; }
  9. private:
  10. bool hw; // runtime error
  11. bool io; // I/O error
  12. bool other; // the others
  13. };

练习7.54

Debug中以 set_ 开头的成员应该被声明成constexpr 吗?如果不,为什么?

解:

不能。constexpr函数必须包含一个返回语句。

练习7.55

7.5.5节的Data类是字面值常量类吗?请解释原因。

解:

不是。因为std::string不是字面值类型。

练习7.56

什么是类的静态成员?它有何优点?静态成员与普通成员有何区别?

解:

与类本身相关,而不是与类的各个对象相关的成员是静态成员。静态成员能用于某些场景,而普通成员不能。

练习7.57

编写你自己的Account类。

解:

  1. class Account {
  2. public:
  3. void calculate() { amount += amount * interestRate; }
  4. static double rate() { return interestRate; }
  5. static void rate(double newRate) { interestRate = newRate; }
  6. private:
  7. std::string owner;
  8. double amount;
  9. static double interestRate;
  10. static constexpr double todayRate = 42.42;
  11. static double initRate() { return todayRate; }
  12. };
  13. double Account::interestRate = initRate();

练习7.58

下面的静态数据成员的声明和定义有错误吗?请解释原因。

  1. //example.h
  2. class Example {
  3. public:
  4. static double rate = 6.5;
  5. static const int vecSize = 20;
  6. static vector<double> vec(vecSize);
  7. };
  8. //example.c
  9. #include "example.h"
  10. double Example::rate;
  11. vector<double> Example::vec;

解:

rate应该是一个常量表达式。而类内只能初始化整型类型的静态常量,所以不能在类内初始化vec。修改后如下:

  1. // example.h
  2. class Example {
  3. public:
  4. static constexpr double rate = 6.5;
  5. static const int vecSize = 20;
  6. static vector<double> vec;
  7. };
  8. // example.C
  9. #include "example.h"
  10. constexpr double Example::rate;
  11. vector<double> Example::vec(Example::vecSize);