第十四章 重载运算与类型转换

练习14.1

在什么情况下重载的运算符与内置运算符有所区别?在什么情况下重载的运算符又与内置运算符一样?

解:

我们可以直接调用重载运算符函数。重置运算符与内置运算符有一样的优先级与结合性。

练习14.2

Sales_data 编写重载的输入、输出、加法和复合赋值运算符。

解:

头文件:

  1. #include <string>
  2. #include <iostream>
  3. class Sales_data {
  4. friend std::istream& operator>>(std::istream&, Sales_data&); // input
  5. friend std::ostream& operator<<(std::ostream&, const Sales_data&); // output
  6. friend Sales_data operator+(const Sales_data&, const Sales_data&); // addition
  7. public:
  8. Sales_data(const std::string &s, unsigned n, double p):bookNo(s), units_sold(n), revenue(n*p){ }
  9. Sales_data() : Sales_data("", 0, 0.0f){ }
  10. Sales_data(const std::string &s) : Sales_data(s, 0, 0.0f){ }
  11. Sales_data(std::istream &is);
  12. Sales_data& operator+=(const Sales_data&); // compound-assignment
  13. std::string isbn() const { return bookNo; }
  14. private:
  15. inline double avg_price() const;
  16. std::string bookNo;
  17. unsigned units_sold = 0;
  18. double revenue = 0.0;
  19. };
  20. std::istream& operator>>(std::istream&, Sales_data&);
  21. std::ostream& operator<<(std::ostream&, const Sales_data&);
  22. Sales_data operator+(const Sales_data&, const Sales_data&);
  23. inline double Sales_data::avg_price() const
  24. {
  25. return units_sold ? revenue/units_sold : 0;
  26. }

主函数:

  1. #include "ex_14_02.h"
  2. Sales_data::Sales_data(std::istream &is) : Sales_data()
  3. {
  4. is >> *this;
  5. }
  6. Sales_data& Sales_data::operator+=(const Sales_data &rhs)
  7. {
  8. units_sold += rhs.units_sold;
  9. revenue += rhs.revenue;
  10. return *this;
  11. }
  12. std::istream& operator>>(std::istream &is, Sales_data &item)
  13. {
  14. double price = 0.0;
  15. is >> item.bookNo >> item.units_sold >> price;
  16. if (is)
  17. item.revenue = price * item.units_sold;
  18. else
  19. item = Sales_data();
  20. return is;
  21. }
  22. std::ostream& operator<<(std::ostream &os, const Sales_data &item)
  23. {
  24. os << item.isbn() << " " << item.units_sold << " " << item.revenue << " " << item.avg_price();
  25. return os;
  26. }
  27. Sales_data operator+(const Sales_data &lhs, const Sales_data &rhs)
  28. {
  29. Sales_data sum = lhs;
  30. sum += rhs;
  31. return sum;
  32. }

练习14.3

stringvector 都定义了重载的==以比较各自的对象,假设 svec1svec2 是存放 stringvector,确定在下面的表达式中分别使用了哪个版本的==

  1. (a) "cobble" == "stone"
  2. (b) svec1[0] == svec2[0]
  3. (c) svec1 == svec2
  4. (d) svec1[0] == "stone"

解:

  • (a) 都不是。
  • (b) string
  • (c) vector
  • (d) string

练习14.4

如何确定下列运算符是否应该是类的成员?

  1. (a) %
  2. (b) %=
  3. (c) ++
  4. (d) ->
  5. (e) <<
  6. (f) &&
  7. (g) ==
  8. (h) ()

解:

  • (a) 不需要是成员。
  • (b) 是成员。
  • (c) 是成员。
  • (d) 必须是成员。
  • (e) 不需要是成员。
  • (f) 不需要是成员。
  • (g) 不需要是成员。
  • (h) 必须是成员。

练习14.5

在7.5.1节中的练习7.40中,编写了下列类中某一个的框架,请问在这个类中应该定义重载的运算符吗?如果是,请写出来。

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

解:

Book,应该重载。

头文件:

  1. #include <iostream>
  2. #include <string>
  3. class Book
  4. {
  5. friend std::istream& operator>>(std::istream&, Book&);
  6. friend std::ostream& operator<<(std::ostream&, const Book&);
  7. friend bool operator==(const Book&, const Book&);
  8. friend bool operator!=(const Book&, const Book&);
  9. public:
  10. Book() = default;
  11. Book(unsigned no, std::string name, std::string author, std::string pubdate) :no_(no), name_(name), author_(author), pubdate_(pubdate) {}
  12. Book(std::istream &in) { in >> *this; }
  13. private:
  14. unsigned no_;
  15. std::string name_;
  16. std::string author_;
  17. std::string pubdate_;
  18. };
  19. std::istream& operator>>(std::istream&, Book&);
  20. std::ostream& operator<<(std::ostream&, const Book&);
  21. bool operator==(const Book&, const Book&);
  22. bool operator!=(const Book&, const Book&);

实现:

  1. #include "ex_14_5.h"
  2. std::istream& operator>>(std::istream &in, Book &book)
  3. {
  4. in >> book.no_ >> book.name_ >> book.author_ >> book.pubdate_;
  5. if (!in)
  6. book = Book();
  7. return in;
  8. }
  9. std::ostream& operator<<(std::ostream &out, const Book &book)
  10. {
  11. out << book.no_ << " " << book.name_ << " " << book.author_ << " " << book.pubdate_;
  12. return out;
  13. }
  14. bool operator==(const Book &lhs, const Book &rhs)
  15. {
  16. return lhs.no_ == rhs.no_;
  17. }
  18. bool operator!=(const Book &lhs, const Book &rhs)
  19. {
  20. return !(lhs == rhs);
  21. }

测试:

  1. #include "ex_14_5.h"
  2. int main()
  3. {
  4. Book book1(123, "CP5", "Lippman", "2012");
  5. Book book2(123, "CP5", "Lippman", "2012");
  6. if (book1 == book2)
  7. std::cout << book1 << std::endl;
  8. }

练习14.6

为你的 Sales_data 类定义输出运算符。

解:

参考14.2。

练习14.7

你在13.5节的练习中曾经编写了一个String类,为它定义一个输出运算符。

解:

头文件:

  1. #include <memory>
  2. #include <iostream>
  3. class String
  4. {
  5. friend std::ostream& operator<<(std::ostream&, const String&);
  6. public:
  7. String() : String("") {}
  8. String(const char *);
  9. String(const String&);
  10. String& operator=(const String&);
  11. ~String();
  12. const char *c_str() const { return elements; }
  13. size_t size() const { return end - elements; }
  14. size_t length() const { return end - elements - 1; }
  15. private:
  16. std::pair<char*, char*> alloc_n_copy(const char*, const char*);
  17. void range_initializer(const char*, const char*);
  18. void free();
  19. private:
  20. char *elements;
  21. char *end;
  22. std::allocator<char> alloc;
  23. };
  24. std::ostream& operator<<(std::ostream&, const String&);

实现:

  1. #include "ex_14_7.h"
  2. #include <algorithm>
  3. #include <iostream>
  4. std::pair<char*, char*>
  5. String::alloc_n_copy(const char *b, const char *e)
  6. {
  7. auto str = alloc.allocate(e - b);
  8. return{ str, std::uninitialized_copy(b, e, str) };
  9. }
  10. void String::range_initializer(const char *first, const char *last)
  11. {
  12. auto newstr = alloc_n_copy(first, last);
  13. elements = newstr.first;
  14. end = newstr.second;
  15. }
  16. String::String(const char *s)
  17. {
  18. char *sl = const_cast<char*>(s);
  19. while (*sl)
  20. ++sl;
  21. range_initializer(s, ++sl);
  22. }
  23. String::String(const String& rhs)
  24. {
  25. range_initializer(rhs.elements, rhs.end);
  26. std::cout << "copy constructor" << std::endl;
  27. }
  28. void String::free()
  29. {
  30. if (elements)
  31. {
  32. std::for_each(elements, end, [this](char &c) { alloc.destroy(&c); });
  33. alloc.deallocate(elements, end - elements);
  34. }
  35. }
  36. String::~String()
  37. {
  38. free();
  39. }
  40. String& String::operator = (const String &rhs)
  41. {
  42. auto newstr = alloc_n_copy(rhs.elements, rhs.end);
  43. free();
  44. elements = newstr.first;
  45. end = newstr.second;
  46. std::cout << "copy-assignment" << std::endl;
  47. return *this;
  48. }
  49. std::ostream& operator<<(std::ostream &os, const String &s)
  50. {
  51. char *c = const_cast<char*>(s.c_str());
  52. while (*c)
  53. os << *c++;
  54. return os;
  55. }

测试:

  1. #include "ex_14_7.h"
  2. int main()
  3. {
  4. String str("Hello World");
  5. std::cout << str << std::endl;
  6. }

练习14.8

你在7.5.1节中的练习中曾经选择并编写了一个类,为它定义一个输出运算符。

解:

参考14.5。

练习14.9

为你的 Sales_data 类定义输入运算符。

解:

参考14.2。

练习14.10

对于 Sales_data 的输入运算符来说如果给定了下面的输入将发生什么情况?

  1. (a) 0-201-99999-9 10 24.95
  2. (b) 10 24.95 0-210-99999-9

解:

  • (a) 格式正确。
  • (b) 不合法的输入。因为程序试图将 0-210-99999-9 转换为 float

练习14.11

下面的 Sales_data 输入运算符存在错误吗?如果有,请指出来。对于这个输入运算符如果仍然给定上个练习的输入将会发生什么情况?

  1. istream& operator>>(istream& in, Sales_data& s)
  2. {
  3. double price;
  4. in >> s.bookNo >> s.units_sold >> price;
  5. s.revence = s.units_sold >> price;
  6. return in;
  7. }

解:

没有输入检查,什么也不会发生。

练习14.12

你在7.5.1节的练习中曾经选择并编写了一个类,为它定义一个输入运算符并确保该运算符可以处理输入错误。

解:

参考14.5。

练习14.13

你认为 Sales_data 类还应该支持哪些其他算术运算符?如果有的话,请给出它们的定义。

解:

没有其他了。

练习14.14

你觉得为什么调用 operator+= 来定义operator+ 比其他方法更有效?

解:

因为用 operator+= 会避免使用一个临时对象,而使得更有效。

练习14.15

你在7.5.1节的练习7.40中曾经选择并编写了一个类,你认为它应该含有其他算术运算符吗?如果是,请实现它们;如果不是,解释原因。

解:

头文件:

  1. #include <iostream>
  2. #include <string>
  3. class Book
  4. {
  5. friend std::istream& operator>>(std::istream&, Book&);
  6. friend std::ostream& operator<<(std::ostream&, const Book&);
  7. friend bool operator==(const Book&, const Book&);
  8. friend bool operator!=(const Book&, const Book&);
  9. friend bool operator<(const Book&, const Book&);
  10. friend bool operator>(const Book&, const Book&);
  11. friend Book operator+(const Book&, const Book&);
  12. public:
  13. Book() = default;
  14. Book(unsigned no, std::string name, std::string author, std::string pubdate, unsigned number) :no_(no), name_(name), author_(author), pubdate_(pubdate), number_(number) {}
  15. Book(std::istream &in) { in >> *this; }
  16. Book& operator+=(const Book&);
  17. private:
  18. unsigned no_;
  19. std::string name_;
  20. std::string author_;
  21. std::string pubdate_;
  22. unsigned number_;
  23. };
  24. std::istream& operator>>(std::istream&, Book&);
  25. std::ostream& operator<<(std::ostream&, const Book&);
  26. bool operator==(const Book&, const Book&);
  27. bool operator!=(const Book&, const Book&);
  28. bool operator<(const Book&, const Book&);
  29. bool operator>(const Book&, const Book&);
  30. Book operator+(const Book&, const Book&);

实现:

  1. #include "ex_14_15.h"
  2. std::istream& operator>>(std::istream &in, Book &book)
  3. {
  4. in >> book.no_ >> book.name_ >> book.author_ >> book.pubdate_ >> book.number_;
  5. return in;
  6. }
  7. std::ostream& operator<<(std::ostream &out, const Book &book)
  8. {
  9. out << book.no_ << " " << book.name_ << " " << book.author_ << " " << book.pubdate_ << " " << book.number_ << std::endl;
  10. return out;
  11. }
  12. bool operator==(const Book &lhs, const Book &rhs)
  13. {
  14. return lhs.no_ == rhs.no_;
  15. }
  16. bool operator!=(const Book &lhs, const Book &rhs)
  17. {
  18. return !(lhs == rhs);
  19. }
  20. bool operator<(const Book &lhs, const Book &rhs)
  21. {
  22. return lhs.no_ < rhs.no_;
  23. }
  24. bool operator>(const Book &lhs, const Book &rhs)
  25. {
  26. return rhs < lhs;
  27. }
  28. Book& Book::operator+=(const Book &rhs)
  29. {
  30. if (rhs == *this)
  31. this->number_ += rhs.number_;
  32. return *this;
  33. }
  34. Book operator+(const Book &lhs, const Book &rhs)
  35. {
  36. Book book = lhs;
  37. book += rhs;
  38. return book;
  39. }

测试:

  1. #include "ex_14_15.h"
  2. int main()
  3. {
  4. Book cp5_1(12345, "CP5", "Lippmen", "2012", 2);
  5. Book cp5_2(12345, "CP5", "Lippmen", "2012", 4);
  6. std::cout << cp5_1 + cp5_2 << std::endl;
  7. }

练习14.16

为你的 StrBlob 类、StrBlobPtr 类、StrVec 类和 String 类分别定义相等运算符和不相等运算符。

解:

练习14.17

你在7.5.1节中的练习7.40中曾经选择并编写了一个类,你认为它应该含有相等运算符吗?如果是,请实现它;如果不是,解释原因。

解:

参考14.15。

练习14.18

为你的 StrBlob 类、StrBlobPtr 类、StrVec 类和 String 类分别定义关系运算符。

解:

练习14.19

你在7.5.1节的练习7.40中曾经选择并编写了一个类,你认为它应该含有关系运算符吗?如果是,请实现它;如果不是,解释原因。

解:

参考14.15。

练习14.20

为你的 Sales_data 类定义加法和复合赋值运算符。

解:

参考14.2。

练习14.21

编写 Sales_data 类的++= 运算符,使得 + 执行实际的加法操作而 += 调用+。相比14.3节和14.4节对这两个运算符的定义,本题的定义有何缺点?试讨论之。

解:

缺点:使用了一个 Sales_data 的临时对象,但它并不是必须的。

练习14.22

定义赋值运算符的一个新版本,使得我们能把一个表示 ISBNstring 赋给一个 Sales_data 对象。

解:

头文件:

  1. #include <string>
  2. #include <iostream>
  3. class Sales_data
  4. {
  5. friend std::istream& operator>>(std::istream&, Sales_data&);
  6. friend std::ostream& operator<<(std::ostream&, const Sales_data&);
  7. friend Sales_data operator+(const Sales_data&, const Sales_data&);
  8. public:
  9. Sales_data(const std::string &s, unsigned n, double p) :bookNo(s), units_sold(n), revenue(n*p) {}
  10. Sales_data() : Sales_data("", 0, 0.0f) {}
  11. Sales_data(const std::string &s) : Sales_data(s, 0, 0.0f) {}
  12. Sales_data(std::istream &is);
  13. Sales_data& operator=(const std::string&);
  14. Sales_data& operator+=(const Sales_data&);
  15. std::string isbn() const { return bookNo; }
  16. private:
  17. inline double avg_price() const;
  18. std::string bookNo;
  19. unsigned units_sold = 0;
  20. double revenue = 0.0;
  21. };
  22. std::istream& operator>>(std::istream&, Sales_data&);
  23. std::ostream& operator<<(std::ostream&, const Sales_data&);
  24. Sales_data operator+(const Sales_data&, const Sales_data&);
  25. inline double Sales_data::avg_price() const
  26. {
  27. return units_sold ? revenue / units_sold : 0;
  28. }

实现:

  1. #include "ex_14_22.h"
  2. Sales_data::Sales_data(std::istream &is) : Sales_data()
  3. {
  4. is >> *this;
  5. }
  6. Sales_data& Sales_data::operator+=(const Sales_data &rhs)
  7. {
  8. units_sold += rhs.units_sold;
  9. revenue += rhs.revenue;
  10. return *this;
  11. }
  12. std::istream& operator>>(std::istream &is, Sales_data &item)
  13. {
  14. double price = 0.0;
  15. is >> item.bookNo >> item.units_sold >> price;
  16. if (is)
  17. item.revenue = price * item.units_sold;
  18. else
  19. item = Sales_data();
  20. return is;
  21. }
  22. std::ostream& operator<<(std::ostream &os, const Sales_data &item)
  23. {
  24. os << item.isbn() << " " << item.units_sold << " " << item.revenue << " " << item.avg_price();
  25. return os;
  26. }
  27. Sales_data operator+(const Sales_data &lhs, const Sales_data &rhs)
  28. {
  29. Sales_data sum = lhs;
  30. sum += rhs;
  31. return sum;
  32. }
  33. Sales_data& Sales_data::operator=(const std::string &isbn)
  34. {
  35. *this = Sales_data(isbn);
  36. return *this;
  37. }

测试:

  1. #include "ex_4_22.h"
  2. int main()
  3. {
  4. std::string strCp5("C++ Primer 5th");
  5. Sales_data cp5 = strCp5;
  6. std::cout << cp5 << std::endl;
  7. }

练习14.23

为你的StrVec 类定义一个 initializer_list 赋值运算符。

解:

头文件:

  1. #include <memory>
  2. #include <string>
  3. #include <initializer_list>
  4. #ifndef _MSC_VER
  5. #define NOEXCEPT noexcept
  6. #else
  7. #define NOEXCEPT
  8. #endif
  9. class StrVec
  10. {
  11. friend bool operator==(const StrVec&, const StrVec&);
  12. friend bool operator!=(const StrVec&, const StrVec&);
  13. friend bool operator< (const StrVec&, const StrVec&);
  14. friend bool operator> (const StrVec&, const StrVec&);
  15. friend bool operator<=(const StrVec&, const StrVec&);
  16. friend bool operator>=(const StrVec&, const StrVec&);
  17. public:
  18. StrVec() : elements(nullptr), first_free(nullptr), cap(nullptr) {}
  19. StrVec(std::initializer_list<std::string>);
  20. StrVec(const StrVec&);
  21. StrVec& operator=(const StrVec&);
  22. StrVec(StrVec&&) NOEXCEPT;
  23. StrVec& operator=(StrVec&&)NOEXCEPT;
  24. ~StrVec();
  25. StrVec& operator=(std::initializer_list<std::string>);
  26. void push_back(const std::string&);
  27. size_t size() const { return first_free - elements; }
  28. size_t capacity() const { return cap - elements; }
  29. std::string *begin() const { return elements; }
  30. std::string *end() const { return first_free; }
  31. std::string& at(size_t pos) { return *(elements + pos); }
  32. const std::string& at(size_t pos) const { return *(elements + pos); }
  33. void reserve(size_t new_cap);
  34. void resize(size_t count);
  35. void resize(size_t count, const std::string&);
  36. private:
  37. std::pair<std::string*, std::string*> alloc_n_copy(const std::string*, const std::string*);
  38. void free();
  39. void chk_n_alloc() { if (size() == capacity()) reallocate(); }
  40. void reallocate();
  41. void alloc_n_move(size_t new_cap);
  42. void range_initialize(const std::string*, const std::string*);
  43. private:
  44. std::string *elements;
  45. std::string *first_free;
  46. std::string *cap;
  47. std::allocator<std::string> alloc;
  48. };
  49. bool operator==(const StrVec&, const StrVec&);
  50. bool operator!=(const StrVec&, const StrVec&);
  51. bool operator< (const StrVec&, const StrVec&);
  52. bool operator> (const StrVec&, const StrVec&);
  53. bool operator<=(const StrVec&, const StrVec&);
  54. bool operator>=(const StrVec&, const StrVec&);

实现:

  1. #include "ex_14_23.h"
  2. #include <algorithm>
  3. void StrVec::push_back(const std::string &s)
  4. {
  5. chk_n_alloc();
  6. alloc.construct(first_free++, s);
  7. }
  8. std::pair<std::string*, std::string*>
  9. StrVec::alloc_n_copy(const std::string *b, const std::string *e)
  10. {
  11. auto data = alloc.allocate(e - b);
  12. return{ data, std::uninitialized_copy(b, e, data) };
  13. }
  14. void StrVec::free()
  15. {
  16. if (elements)
  17. {
  18. for_each(elements, first_free, [this](std::string &rhs) { alloc.destroy(&rhs); });
  19. alloc.deallocate(elements, cap - elements);
  20. }
  21. }
  22. void StrVec::range_initialize(const std::string *first, const std::string *last)
  23. {
  24. auto newdata = alloc_n_copy(first, last);
  25. elements = newdata.first;
  26. first_free = cap = newdata.second;
  27. }
  28. StrVec::StrVec(const StrVec &rhs)
  29. {
  30. range_initialize(rhs.begin(), rhs.end());
  31. }
  32. StrVec::StrVec(std::initializer_list<std::string> il)
  33. {
  34. range_initialize(il.begin(), il.end());
  35. }
  36. StrVec::~StrVec()
  37. {
  38. free();
  39. }
  40. StrVec& StrVec::operator = (const StrVec &rhs)
  41. {
  42. auto data = alloc_n_copy(rhs.begin(), rhs.end());
  43. free();
  44. elements = data.first;
  45. first_free = cap = data.second;
  46. return *this;
  47. }
  48. void StrVec::alloc_n_move(size_t new_cap)
  49. {
  50. auto newdata = alloc.allocate(new_cap);
  51. auto dest = newdata;
  52. auto elem = elements;
  53. for (size_t i = 0; i != size(); ++i)
  54. alloc.construct(dest++, std::move(*elem++));
  55. free();
  56. elements = newdata;
  57. first_free = dest;
  58. cap = elements + new_cap;
  59. }
  60. void StrVec::reallocate()
  61. {
  62. auto newcapacity = size() ? 2 * size() : 1;
  63. alloc_n_move(newcapacity);
  64. }
  65. void StrVec::reserve(size_t new_cap)
  66. {
  67. if (new_cap <= capacity()) return;
  68. alloc_n_move(new_cap);
  69. }
  70. void StrVec::resize(size_t count)
  71. {
  72. resize(count, std::string());
  73. }
  74. void StrVec::resize(size_t count, const std::string &s)
  75. {
  76. if (count > size())
  77. {
  78. if (count > capacity()) reserve(count * 2);
  79. for (size_t i = size(); i != count; ++i)
  80. alloc.construct(first_free++, s);
  81. }
  82. else if (count < size())
  83. {
  84. while (first_free != elements + count)
  85. alloc.destroy(--first_free);
  86. }
  87. }
  88. StrVec::StrVec(StrVec &&s) NOEXCEPT : elements(s.elements), first_free(s.first_free), cap(s.cap)
  89. {
  90. // leave s in a state in which it is safe to run the destructor.
  91. s.elements = s.first_free = s.cap = nullptr;
  92. }
  93. StrVec& StrVec::operator = (StrVec &&rhs) NOEXCEPT
  94. {
  95. if (this != &rhs)
  96. {
  97. free();
  98. elements = rhs.elements;
  99. first_free = rhs.first_free;
  100. cap = rhs.cap;
  101. rhs.elements = rhs.first_free = rhs.cap = nullptr;
  102. }
  103. return *this;
  104. }
  105. bool operator==(const StrVec &lhs, const StrVec &rhs)
  106. {
  107. return (lhs.size() == rhs.size() && std::equal(lhs.begin(), lhs.end(), rhs.begin()));
  108. }
  109. bool operator!=(const StrVec &lhs, const StrVec &rhs)
  110. {
  111. return !(lhs == rhs);
  112. }
  113. bool operator<(const StrVec &lhs, const StrVec &rhs)
  114. {
  115. return std::lexicographical_compare(lhs.begin(), lhs.end(), rhs.begin(), rhs.end());
  116. }
  117. bool operator>(const StrVec &lhs, const StrVec &rhs)
  118. {
  119. return rhs < lhs;
  120. }
  121. bool operator<=(const StrVec &lhs, const StrVec &rhs)
  122. {
  123. return !(rhs < lhs);
  124. }
  125. bool operator>=(const StrVec &lhs, const StrVec &rhs)
  126. {
  127. return !(lhs < rhs);
  128. }
  129. StrVec& StrVec::operator=(std::initializer_list<std::string> il)
  130. {
  131. *this = StrVec(il);
  132. return *this;
  133. }

测试:

  1. #include "ex_14_23.h"
  2. #include <vector>
  3. #include <iostream>
  4. int main()
  5. {
  6. StrVec vec;
  7. vec.reserve(6);
  8. std::cout << "capacity(reserve to 6): " << vec.capacity() << std::endl;
  9. vec.reserve(4);
  10. std::cout << "capacity(reserve to 4): " << vec.capacity() << std::endl;
  11. vec.push_back("hello");
  12. vec.push_back("world");
  13. vec.resize(4);
  14. for (auto i = vec.begin(); i != vec.end(); ++i)
  15. std::cout << *i << std::endl;
  16. std::cout << "-EOF-" << std::endl;
  17. vec.resize(1);
  18. for (auto i = vec.begin(); i != vec.end(); ++i)
  19. std::cout << *i << std::endl;
  20. std::cout << "-EOF-" << std::endl;
  21. StrVec vec_list{ "hello", "world", "pezy" };
  22. for (auto i = vec_list.begin(); i != vec_list.end(); ++i)
  23. std::cout << *i << " ";
  24. std::cout << std::endl;
  25. // Test operator==
  26. const StrVec const_vec_list = { "hello", "world", "pezy" };
  27. if (vec_list == const_vec_list)
  28. for (const auto &str : const_vec_list)
  29. std::cout << str << " ";
  30. std::cout << std::endl;
  31. // Test operator<
  32. const StrVec const_vec_list_small = { "hello", "pezy", "ok" };
  33. std::cout << (const_vec_list_small < const_vec_list) << std::endl;
  34. }

练习14.24

你在7.5.1节的练习7.40中曾经选择并编写了一个类,你认为它应该含有拷贝赋值和移动赋值运算符吗?如果是,请实现它们。

解:

头文件:

  1. #ifndef DATE_H
  2. #define DATE_H
  3. #ifndef _MSC_VER
  4. #define NOEXCEPT noexcept
  5. #else
  6. #define NOEXCEPT
  7. #endif
  8. #include <iostream>
  9. #include <vector>
  10. class Date
  11. {
  12. friend bool operator ==(const Date& lhs, const Date& rhs);
  13. friend bool operator < (const Date &lhs, const Date &rhs);
  14. friend bool check(const Date &d);
  15. friend std::ostream& operator <<(std::ostream& os, const Date& d);
  16. public:
  17. typedef std::size_t Size;
  18. // default constructor
  19. Date() = default;
  20. // constructor taking Size as days
  21. explicit Date(Size days);
  22. // constructor taking three Size
  23. Date(Size d, Size m, Size y) : day(d), month(m), year(y) {}
  24. // constructor taking iostream
  25. Date(std::istream &is, std::ostream &os);
  26. // copy constructor
  27. Date(const Date& d);
  28. // move constructor
  29. Date(Date&& d) NOEXCEPT;
  30. // copy operator=
  31. Date& operator= (const Date& d);
  32. // move operator=
  33. Date& operator= (Date&& rhs) NOEXCEPT;
  34. // destructor -- in this case, user-defined destructor is not nessary.
  35. ~Date() { std::cout << "destroying\n"; }
  36. // members
  37. Size toDays() const; //not implemented yet.
  38. Date& operator +=(Size offset);
  39. Date& operator -=(Size offset);
  40. private:
  41. Size day = 1;
  42. Size month = 1;
  43. Size year = 0;
  44. };
  45. static const Date::Size YtoD_400 = 146097; //365*400 + 400/4 -3 == 146097
  46. static const Date::Size YtoD_100 = 36524; //365*100 + 100/4 -1 == 36524
  47. static const Date::Size YtoD_4 = 1461; //365*4 + 1 == 1461
  48. static const Date::Size YtoD_1 = 365; //365
  49. // normal year
  50. static const std::vector<Date::Size> monthsVec_n =
  51. { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
  52. // leap year
  53. static const std::vector<Date::Size> monthsVec_l =
  54. { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
  55. // non-member operators: << >> - == != < <= > >=
  56. //
  57. std::ostream&
  58. operator <<(std::ostream& os, const Date& d);
  59. std::istream&
  60. operator >>(std::istream& is, Date& d);
  61. int
  62. operator - (const Date& lhs, const Date& rhs);
  63. bool
  64. operator ==(const Date& lhs, const Date& rhs);
  65. bool
  66. operator !=(const Date& lhs, const Date& rhs);
  67. bool
  68. operator < (const Date& lhs, const Date& rhs);
  69. bool
  70. operator <=(const Date& lhs, const Date& rhs);
  71. bool
  72. operator >(const Date& lhs, const Date& rhs);
  73. bool
  74. operator >=(const Date& lhs, const Date& rhs);
  75. Date
  76. operator - (const Date& lhs, Date::Size rhs);
  77. Date
  78. operator +(const Date& lhs, Date::Size rhs);
  79. // utillities:
  80. bool check(const Date &d);
  81. inline bool
  82. isLeapYear(Date::Size y);
  83. // check if the date object passed in is valid
  84. inline bool
  85. check(const Date &d)
  86. {
  87. if (d.month == 0 || d.month >12)
  88. return false;
  89. else
  90. {
  91. // month == 1 3 5 7 8 10 12
  92. if (d.month == 1 || d.month == 3 || d.month == 5 || d.month == 7 ||
  93. d.month == 8 || d.month == 10 || d.month == 12)
  94. {
  95. if (d.day == 0 || d.day > 31) return false;
  96. else
  97. return true;
  98. }
  99. else
  100. {
  101. // month == 4 6 9 11
  102. if (d.month == 4 || d.month == 6 || d.month == 9 || d.month == 11)
  103. {
  104. if (d.day == 0 || d.day > 30) return false;
  105. else
  106. return true;
  107. }
  108. else
  109. {
  110. // month == 2
  111. if (isLeapYear(d.year))
  112. {
  113. if (d.day == 0 || d.day >29) return false;
  114. else
  115. return true;
  116. }
  117. else
  118. {
  119. if (d.day == 0 || d.day >28) return false;
  120. else
  121. return true;
  122. }
  123. }
  124. }
  125. }
  126. }
  127. inline bool
  128. isLeapYear(Date::Size y)
  129. {
  130. if (!(y % 400))
  131. {
  132. return true;
  133. }
  134. else
  135. {
  136. if (!(y % 100))
  137. {
  138. return false;
  139. }
  140. else
  141. return !(y % 4);
  142. }
  143. }
  144. #endif // DATE_H

实现:

  1. #include "ex_14_24.h"
  2. #include <algorithm>
  3. // constructor taking Size as days
  4. // the argument must be within (0, 2^32)
  5. Date::Date(Size days)
  6. {
  7. // calculate the year
  8. Size y400 = days / YtoD_400;
  9. Size y100 = (days - y400*YtoD_400) / YtoD_100;
  10. Size y4 = (days - y400*YtoD_400 - y100*YtoD_100) / YtoD_4;
  11. Size y = (days - y400*YtoD_400 - y100*YtoD_100 - y4*YtoD_4) / 365;
  12. Size d = days - y400*YtoD_400 - y100*YtoD_100 - y4*YtoD_4 - y * 365;
  13. this->year = y400 * 400 + y100 * 100 + y4 * 4 + y;
  14. // check if leap and choose the months vector accordingly
  15. std::vector<Size>currYear
  16. = isLeapYear(this->year) ? monthsVec_l : monthsVec_n;
  17. // calculate day and month using find_if + lambda
  18. Size D_accumu = 0, M_accumu = 0;
  19. // @bug fixed: the variabbles above hade been declared inside the find_if as static
  20. // which caused the bug. It works fine now after being move outside.
  21. std::find_if(currYear.cbegin(), currYear.cend(), [&](Size m)
  22. {
  23. D_accumu += m;
  24. M_accumu++;
  25. if (d < D_accumu)
  26. {
  27. this->month = M_accumu;
  28. this->day = d + m - D_accumu;
  29. return true;
  30. }
  31. else
  32. return false;
  33. });
  34. }
  35. // construcotr taking iostream
  36. Date::Date(std::istream &is, std::ostream &os)
  37. {
  38. is >> day >> month >> year;
  39. if (is)
  40. {
  41. if (check(*this)) return;
  42. else
  43. {
  44. os << "Invalid input! Object is default initialized.";
  45. *this = Date();
  46. }
  47. }
  48. else
  49. {
  50. os << "Invalid input! Object is default initialized.";
  51. *this = Date();
  52. }
  53. }
  54. // copy constructor
  55. Date::Date(const Date &d) :
  56. day(d.day), month(d.month), year(d.year)
  57. {}
  58. // move constructor
  59. Date::Date(Date&& d) NOEXCEPT :
  60. day(d.day), month(d.month), year(d.year)
  61. { std::cout << "copy moving"; }
  62. // copy operator=
  63. Date &Date::operator= (const Date &d)
  64. {
  65. this->day = d.day;
  66. this->month = d.month;
  67. this->year = d.year;
  68. return *this;
  69. }
  70. // move operator=
  71. Date &Date::operator =(Date&& rhs) NOEXCEPT
  72. {
  73. if (this != &rhs)
  74. {
  75. this->day = rhs.day;
  76. this->month = rhs.month;
  77. this->year = rhs.year;
  78. }
  79. std::cout << "moving =";
  80. return *this;
  81. }
  82. // conver to days
  83. Date::Size Date::toDays() const
  84. {
  85. Size result = this->day;
  86. // check if leap and choose the months vector accordingly
  87. std::vector<Size>currYear
  88. = isLeapYear(this->year) ? monthsVec_l : monthsVec_n;
  89. // calculate result + days by months
  90. for (auto it = currYear.cbegin(); it != currYear.cbegin() + this->month - 1; ++it)
  91. result += *it;
  92. // calculate result + days by years
  93. result += (this->year / 400) * YtoD_400;
  94. result += (this->year % 400 / 100) * YtoD_100;
  95. result += (this->year % 100 / 4) * YtoD_4;
  96. result += (this->year % 4) * YtoD_1;
  97. return result;
  98. }
  99. // member operators: += -=
  100. Date &Date::operator +=(Date::Size offset)
  101. {
  102. *this = Date(this->toDays() + offset);
  103. return *this;
  104. }
  105. Date &Date::operator -=(Date::Size offset)
  106. {
  107. if (this->toDays() > offset)
  108. *this = Date(this->toDays() - offset);
  109. else
  110. *this = Date();
  111. return *this;
  112. }
  113. // non-member operators: << >> - == != < <= > >=
  114. std::ostream&
  115. operator <<(std::ostream& os, const Date& d)
  116. {
  117. os << d.day << " " << d.month << " " << d.year;
  118. return os;
  119. }
  120. std::istream&
  121. operator >>(std::istream& is, Date& d)
  122. {
  123. if (is)
  124. {
  125. Date input = Date(is, std::cout);
  126. if (check(input)) d = input;
  127. }
  128. return is;
  129. }
  130. int operator -(const Date &lhs, const Date &rhs)
  131. {
  132. return lhs.toDays() - rhs.toDays();
  133. }
  134. bool operator ==(const Date &lhs, const Date &rhs)
  135. {
  136. return (lhs.day == rhs.day) &&
  137. (lhs.month == rhs.month) &&
  138. (lhs.year == rhs.year);
  139. }
  140. bool operator !=(const Date &lhs, const Date &rhs)
  141. {
  142. return !(lhs == rhs);
  143. }
  144. bool operator < (const Date &lhs, const Date &rhs)
  145. {
  146. return lhs.toDays() < rhs.toDays();
  147. }
  148. bool operator <=(const Date &lhs, const Date &rhs)
  149. {
  150. return (lhs < rhs) || (lhs == rhs);
  151. }
  152. bool operator >(const Date &lhs, const Date &rhs)
  153. {
  154. return !(lhs <= rhs);
  155. }
  156. bool operator >=(const Date &lhs, const Date &rhs)
  157. {
  158. return !(lhs < rhs);
  159. }
  160. Date operator - (const Date &lhs, Date::Size rhs)
  161. { // ^^^ rhs must not be larger than 2^32-1
  162. // copy lhs
  163. Date result(lhs);
  164. result -= rhs;
  165. return result;
  166. }
  167. Date operator + (const Date &lhs, Date::Size rhs)
  168. { // ^^^ rhs must not be larger than 2^32-1
  169. // copy lhs
  170. Date result(lhs);
  171. result += rhs;
  172. return result;
  173. }

测试:

  1. #include "ex_14_24.h"
  2. #include <iostream>
  3. int main()
  4. {
  5. Date lhs(9999999), rhs(1);
  6. std::cout << (lhs -= 12000) << "\n";
  7. return 0;
  8. }

练习14.25

上题的这个类还需要定义其他赋值运算符吗?如果是,请实现它们;同时说明运算对象应该是什么类型并解释原因。

解:

是。如上题。

练习14.26

为你的 StrBlob 类、StrBlobPtr 类、StrVec 类和 String 类定义下标运算符。

解:

练习14.27

为你的 StrBlobPtr 类添加递增和递减运算符。

解:

只显示添加的代码:

  1. class StrBlobPtr {
  2. public:
  3. string& deref() const;
  4. StrBlobPtr& operator++();
  5. StrBlobPtr& operator--();
  6. StrBlobPtr operator++(int);
  7. StrBlobPtr operator--(int);
  8. StrBlobPtr& operator+=(size_t);
  9. StrBlobPtr& operator-=(size_t);
  10. StrBlobPtr operator+(size_t) const;
  11. StrBlobPtr operator-(size_t) const;
  12. };
  13. inline StrBlobPtr& StrBlobPtr::operator++()
  14. {
  15. check(curr, "increment past end of StrBlobPtr");
  16. ++curr;
  17. return *this;
  18. }
  19. inline StrBlobPtr& StrBlobPtr::operator--()
  20. {
  21. check(--curr, "decrement past begin of StrBlobPtr");
  22. return *this;
  23. }
  24. inline StrBlobPtr StrBlobPtr::operator++(int)
  25. {
  26. StrBlobPtr ret = *this;
  27. ++*this;
  28. return ret;
  29. }
  30. inline StrBlobPtr StrBlobPtr::operator--(int)
  31. {
  32. StrBlobPtr ret = *this;
  33. --*this;
  34. return ret;
  35. }
  36. inline StrBlobPtr& StrBlobPtr::operator+=(size_t n)
  37. {
  38. curr += n;
  39. check(curr, "increment past end of StrBlobPtr");
  40. return *this;
  41. }
  42. inline StrBlobPtr& StrBlobPtr::operator-=(size_t n)
  43. {
  44. curr -= n;
  45. check(curr, "increment past end of StrBlobPtr");
  46. return *this;
  47. }
  48. inline StrBlobPtr StrBlobPtr::operator+(size_t n) const
  49. {
  50. StrBlobPtr ret = *this;
  51. ret += n;
  52. return ret;
  53. }
  54. inline StrBlobPtr StrBlobPtr::operator-(size_t n) const
  55. {
  56. StrBlobPtr ret = *this;
  57. ret -= n;
  58. return ret;
  59. }

练习14.28

为你的 StrBlobPtr 类添加加法和减法运算符,使其可以实现指针的算术运算。

解:

参考14.27。

练习14.29

为什么不定义const 版本的递增和递减运算符?

解:

因为递增和递减会改变对象本身,所以定义 const 版本的毫无意义。

练习14.30

为你的 StrBlobPtr 类和在12.1.6节练习12.22中定义的 ConstStrBlobPtr 的类分别添加解引用运算符和箭头运算符。注意:因为 ConstStrBlobPtr 的数据成员指向const vector,所以ConstStrBlobPtr 中的运算符必须返回常量引用。

解:

略。

练习14.31

我们的 StrBlobPtr 类没有定义拷贝构造函数、赋值运算符以及析构函数,为什么?

解:

因为使用合成的足够了。

练习14.32

定义一个类令其含有指向 StrBlobPtr 对象的指针,为这个类定义重载的箭头运算符。

解:

头文件:

  1. class StrBlobPtr;
  2. class StrBlobPtr_pointer
  3. {
  4. public:
  5. StrBlobPtr_pointer() = default;
  6. StrBlobPtr_pointer(StrBlobPtr* p) : pointer(p) { }
  7. StrBlobPtr& operator *() const;
  8. StrBlobPtr* operator->() const;
  9. private:
  10. StrBlobPtr* pointer = nullptr;
  11. };

实现:

  1. #include "ex_14_32.h"
  2. #include "ex_14_30_StrBlob.h"
  3. #include <iostream>
  4. StrBlobPtr&
  5. StrBlobPtr_pointer::operator *() const
  6. {
  7. return *pointer;
  8. }
  9. StrBlobPtr*
  10. StrBlobPtr_pointer::operator ->() const
  11. {
  12. return pointer;
  13. }

练习14.33

一个重载的函数调用运算符应该接受几个运算对象?

解:

一个重载的函数调用运算符接受的运算对象应该和该运算符拥有的操作数一样多。

练习14.34

定义一个函数对象类,令其执行if-then-else 的操作:该类的调用运算符接受三个形参,它首先检查第一个形参,如果成功返回第二个形参值;如果不成功返回第三个形参的值。

解:

  1. struct Test
  2. {
  3. int operator()(bool b, int iA, int iB)
  4. {
  5. return b ? iA : iB;
  6. }
  7. };

练习14.35

编写一个类似于 PrintString 的类,令其从 istream 中读取一行输入,然后返回一个表示我们所读内容的string。如果读取失败,返回空string

解:

  1. #include <iostream>
  2. #include <string>
  3. class GetInput
  4. {
  5. public:
  6. GetInput(std::istream &i = std::cin) : is(i) {}
  7. std::string operator()() const
  8. {
  9. std::string str;
  10. std::getline(is, str);
  11. return is ? str : std::string();
  12. }
  13. private:
  14. std::istream &is;
  15. };
  16. int main()
  17. {
  18. GetInput getInput;
  19. std::cout << getInput() << std::endl;
  20. }

练习14.36

使用前一个练习定义的类读取标准输入,将每一行保存为 vector 的一个元素。

解:

  1. #include <iostream>
  2. #include <string>
  3. #include <vector>
  4. class GetInput
  5. {
  6. public:
  7. GetInput(std::istream &i = std::cin) : is(i) {}
  8. std::string operator()() const
  9. {
  10. std::string str;
  11. std::getline(is, str);
  12. return is ? str : std::string();
  13. }
  14. private:
  15. std::istream &is;
  16. };
  17. int main()
  18. {
  19. GetInput getInput;
  20. std::vector<std::string> vec;
  21. for (std::string tmp; !(tmp = getInput()).empty();) vec.push_back(tmp);
  22. for (const auto &str : vec) std::cout << str << " ";
  23. std::cout << std::endl;
  24. }

练习14.37

编写一个类令其检查两个值是否相等。使用该对象及标准库算法编写程序,令其替换某个序列中具有给定值的所有实例。

解:

  1. #include <iostream>
  2. #include <algorithm>
  3. #include <vector>
  4. class IsEqual
  5. {
  6. int value;
  7. public:
  8. IsEqual(int v) : value(v) {}
  9. bool operator()(int elem)
  10. {
  11. return elem == value;
  12. }
  13. };
  14. int main()
  15. {
  16. std::vector<int> vec = { 3, 2, 1, 4, 3, 7, 8, 6 };
  17. std::replace_if(vec.begin(), vec.end(), IsEqual(3), 5);
  18. for (int i : vec) std::cout << i << " ";
  19. std::cout << std::endl;
  20. }

练习14.38

编写一个类令其检查某个给定的 string 对象的长度是否与一个阈值相等。使用该对象编写程序,统计并报告在输入的文件中长度为1的单词有多少个,长度为2的单词有多少个、……、长度为10的单词有多少个。

解:

  1. #include <iostream>
  2. #include <string>
  3. #include <fstream>
  4. #include <vector>
  5. #include <map>
  6. struct IsInRange
  7. {
  8. IsInRange(std::size_t lower, std::size_t upper)
  9. :_lower(lower), _upper(upper)
  10. {}
  11. bool operator()(std::string const& str) const
  12. {
  13. return str.size() >= _lower && str.size() <= _upper;
  14. }
  15. std::size_t lower_limit() const
  16. {
  17. return _lower;
  18. }
  19. std::size_t upper_limit() const
  20. {
  21. return _upper;
  22. }
  23. private:
  24. std::size_t _lower;
  25. std::size_t _upper;
  26. };
  27. int main()
  28. {
  29. //create predicates with various upper limits.
  30. std::size_t lower = 1;
  31. auto uppers = { 3u, 4u, 5u, 6u, 7u, 8u, 9u, 10u, 11u, 12u, 13u, 14u };
  32. std::vector<IsInRange> predicates;
  33. for (auto upper : uppers)
  34. predicates.push_back(IsInRange{ lower, upper });
  35. //create count_table to store counts
  36. std::map<std::size_t, std::size_t> count_table;
  37. for (auto upper : uppers)
  38. count_table[upper] = 0;
  39. //read file and count
  40. std::ifstream fin("storyDataFile.txt");
  41. for (std::string word; fin >> word; /* */)
  42. for (auto is_size_in_range : predicates)
  43. if (is_size_in_range(word))
  44. ++count_table[is_size_in_range.upper_limit()];
  45. //print
  46. for (auto pair : count_table)
  47. std::cout << "count in range [1, " << pair.first << "] : " << pair.second << std::endl;
  48. return 0;
  49. }

练习14.39

修改上一题的程序令其报告长度在1到9之间的单词有多少个、长度在10以上的单词有多少个。

解:

参考14.38。

练习14.40

重新编写10.3.2节的biggies 函数,使用函数对象替换其中的 lambda 表达式。

解:

  1. #include <vector>
  2. #include <string>
  3. #include <iostream>
  4. #include <algorithm>
  5. using namespace std;
  6. class ShorterString
  7. {
  8. public:
  9. bool operator()(string const& s1, string const& s2) const { return s1.size() < s2.size(); }
  10. };
  11. class BiggerEqual
  12. {
  13. size_t sz_;
  14. public:
  15. BiggerEqual(size_t sz) : sz_(sz) {}
  16. bool operator()(string const& s) { return s.size() >= sz_; }
  17. };
  18. class Print
  19. {
  20. public:
  21. void operator()(string const& s) { cout << s << " "; }
  22. };
  23. string make_plural(size_t ctr, string const& word, string const& ending)
  24. {
  25. return (ctr > 1) ? word + ending : word;
  26. }
  27. void elimDups(vector<string> &words)
  28. {
  29. sort(words.begin(), words.end());
  30. auto end_unique = unique(words.begin(), words.end());
  31. words.erase(end_unique, words.end());
  32. }
  33. void biggies(vector<string> &words, vector<string>::size_type sz)
  34. {
  35. elimDups(words);
  36. stable_sort(words.begin(), words.end(), ShorterString());
  37. auto wc = find_if(words.begin(), words.end(), BiggerEqual(sz));
  38. auto count = words.end() - wc;
  39. cout << count << " " << make_plural(count, "word", "s") << " of length " << sz << " or longer" << endl;
  40. for_each(wc, words.end(), Print());
  41. cout << endl;
  42. }
  43. int main()
  44. {
  45. vector<string> vec{ "fox", "jumps", "over", "quick", "red", "red", "slow", "the", "turtle" };
  46. biggies(vec, 4);
  47. }

练习14.41

你认为 C++ 11 标准为什么要增加 lambda?对于你自己来说,什么情况下会使用 lambda,什么情况下会使用类?

解:

使用 lambda 是非常方便的,当需要使用一个函数,而这个函数不常使用并且简单时,使用lambda 是比较方便的选择。

练习14.42

使用标准库函数对象及适配器定义一条表达式,令其

  1. (a) 统计大于1024的值有多少个。
  2. (b) 找到第一个不等于pooh的字符串。
  3. (c) 将所有的值乘以2

解:

  1. std::count_if(ivec.cbegin(), ivec.cend(), std::bind(std::greater<int>(), _1, 1024));
  2. std::find_if(svec.cbegin(), svec.cend(), std::bind(std::not_equal_to<std::string>(), _1, "pooh"));
  3. std::transform(ivec.begin(), ivec.end(), ivec.begin(), std::bind(std::multiplies<int>(), _1, 2));

练习14.43

使用标准库函数对象判断一个给定的int值是否能被 int 容器中的所有元素整除。

解:

  1. #include <iostream>
  2. #include <string>
  3. #include <functional>
  4. #include <algorithm>
  5. int main()
  6. {
  7. auto data = { 2, 3, 4, 5 };
  8. int input;
  9. std::cin >> input;
  10. std::modulus<int> mod;
  11. auto predicator = [&](int i) { return 0 == mod(input, i); };
  12. auto is_divisible = std::any_of(data.begin(), data.end(), predicator);
  13. std::cout << (is_divisible ? "Yes!" : "No!") << std::endl;
  14. return 0;
  15. }

练习14.44

编写一个简单的桌面计算器使其能处理二元运算。

解:

  1. #include <iostream>
  2. #include <string>
  3. #include <map>
  4. #include <functional>
  5. int add(int i, int j) { return i + j; }
  6. auto mod = [](int i, int j) { return i % j; };
  7. struct Div { int operator ()(int i, int j) const { return i / j; } };
  8. auto binops = std::map<std::string, std::function<int(int, int)>>
  9. {
  10. { "+", add }, // function pointer
  11. { "-", std::minus<int>() }, // library functor
  12. { "/", Div() }, // user-defined functor
  13. { "*", [](int i, int j) { return i*j; } }, // unnamed lambda
  14. { "%", mod } // named lambda object
  15. };
  16. int main()
  17. {
  18. while (std::cout << "Pls enter as: num operator num :\n", true)
  19. {
  20. int lhs, rhs; std::string op;
  21. std::cin >> lhs >> op >> rhs;
  22. std::cout << binops[op](lhs, rhs) << std::endl;
  23. }
  24. return 0;
  25. }

练习14.45

编写类型转换运算符将一个 Sales_data 对象分别转换成 stringdouble,你认为这些运算符的返回值应该是什么?

解:

头文件:

  1. #include <string>
  2. #include <iostream>
  3. class Sales_data
  4. {
  5. friend std::istream& operator>>(std::istream&, Sales_data&);
  6. friend std::ostream& operator<<(std::ostream&, const Sales_data&);
  7. friend Sales_data operator+(const Sales_data&, const Sales_data&);
  8. public:
  9. Sales_data(const std::string &s, unsigned n, double p) :bookNo(s), units_sold(n), revenue(n*p) {}
  10. Sales_data() : Sales_data("", 0, 0.0f) {}
  11. Sales_data(const std::string &s) : Sales_data(s, 0, 0.0f) {}
  12. Sales_data(std::istream &is);
  13. Sales_data& operator=(const std::string&);
  14. Sales_data& operator+=(const Sales_data&);
  15. explicit operator std::string() const { return bookNo; }
  16. explicit operator double() const { return avg_price(); }
  17. std::string isbn() const { return bookNo; }
  18. private:
  19. inline double avg_price() const;
  20. std::string bookNo;
  21. unsigned units_sold = 0;
  22. double revenue = 0.0;
  23. };
  24. std::istream& operator>>(std::istream&, Sales_data&);
  25. std::ostream& operator<<(std::ostream&, const Sales_data&);
  26. Sales_data operator+(const Sales_data&, const Sales_data&);
  27. inline double Sales_data::avg_price() const
  28. {
  29. return units_sold ? revenue / units_sold : 0;
  30. }

练习14.46

你认为应该为 Sales_data 类定义上面两种类型转换运算符吗?应该把它们声明成 explicit 的吗?为什么?

解:

上面的两种类型转换有歧义,应该声明成 explicit 的。

练习14.47

说明下面这两个类型转换运算符的区别。

  1. struct Integral {
  2. operator const int();
  3. operator int() const;
  4. }

解:

第一个无意义,会被编译器忽略。第二个合法。

练习14.48

你在7.5.1节的练习7.40中曾经选择并编写了一个类,你认为它应该含有向 bool 的类型转换运算符吗?如果是,解释原因并说明该运算符是否应该是 explicit的;如果不是,也请解释原因。

解:

Date 类应该含有向 bool 的类型转换运算符,并且应该声明为 explicit 的。

练习14.49

为上一题提到的类定义一个转换目标是 bool 的类型转换运算符,先不用在意这么做是否应该。

解:

  1. explicit operator bool() { return (year<4000) ? true : false; }

练习14.50

在初始化 ex1ex2 的过程中,可能用到哪些类类型的转换序列呢?说明初始化是否正确并解释原因。

  1. struct LongDouble {
  2. LongDouble(double = 0.0);
  3. operator double();
  4. operator float();
  5. };
  6. LongDouble ldObj;
  7. int ex1 = ldObj;
  8. float ex2 = ldObj;

解:

ex1 转换不合法,没有定义从 LongDoubleint 的转换,从double转换还是float转换存在二义性。ex2 合法。

练习14.51

在调用 calc 的过程中,可能用到哪些类型转换序列呢?说明最佳可行函数是如何被选出来的。

  1. void calc(int);
  2. void calc(LongDouble);
  3. double dval;
  4. calc(dval); // 调用了哪个calc?

解:

最佳可行函数是 void calc(int)

转换的优先级如下:

  1. 精确匹配
  2. const 转换。
  3. 类型提升
  4. 算术转换
  5. 类类型转换

练习14.52

在下面的加法表达式中分别选用了哪个operator+?列出候选函数、可行函数及为每个可行函数的实参执行的类型转换:

  1. struct Longdouble {
  2. //用于演示的成员operator+;在通常情况下是个非成员
  3. LongDouble operator+(const SmallInt&);
  4. //其他成员与14.9.2节一致
  5. };
  6. LongDouble operator+(LongDouble&, double);
  7. SmallInt si;
  8. LongDouble ld;
  9. ld = si + ld;
  10. ld = ld + si;

解:

ld = si + ld; 不合法。ld = ld + si 两个都可以调用,但是第一个调用更精确一些。

练习14.53

假设我们已经定义了如第522页所示的SmallInt,判断下面的加法表达式是否合法。如果合法,使用了哪个加法运算符?如果不合法,应该怎样修改代码才能使其合法?

  1. SmallInt si;
  2. double d = si + 3.14;

解:

不合法,存在二义性。

应该该为:

  1. SmallInt s1;
  2. double d = s1 + SmallInt(3.14);