14.4 - 重载输入输出运算符
Key Takeaway
For classes that have multiple member variables, printing each of the individual variables on the screen can get tiresome fast. For example, consider the following class:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
|
COPY
If you wanted to print an instance of this class to the screen, you’d have to do something like this:
1 2 3 4 5 |
|
COPY
Of course, it makes more sense to do this as a reusable function. And in previous examples, you’ve seen us create print() functions that work like this:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
|
COPY
While this is much better, it still has some downsides. Because print() returns void, it can’t be called in the middle of an output statement. Instead, you have to do this:
1 2 3 4 5 6 7 8 |
|
COPY
It would be much easier if you could simply type:
1 2 |
|
COPY
and get the same result. There would be no breaking up output across multiple statements, and no having to remember what you named the print function.
Fortunately, by overloading the << operator, you can!
Overloading operator<<
Overloading operator<< is similar to overloading operator+ (they are both binary operators), except that the parameter types are different.
Consider the expression std::cout << point
. If the operator is <<, what are the operands? The left operand is the std::cout object, and the right operand is your Point class object. std::cout is actually an object of type std::ostream. Therefore, our overloaded function will look like this:
1 2 |
|
COPY
Implementation of operator<< for our Point class is fairly straightforward -- because C++ already knows how to output doubles using operator<<, and our members are all doubles, we can simply use operator<< to output the member variables of our Point. Here is the above Point class with the overloaded operator<<.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
|
COPY
This is pretty straightforward -- note how similar our output line is to the line in the print() function we wrote previously. The most notable difference is that std::cout has become parameter out (which will be a reference to std::cout when the function is called).
The trickiest part here is the return type. With the arithmetic operators, we calculated and returned a single answer by value (because we were creating and returning a new result). However, if you try to return std::ostream by value, you’ll get a compiler error. This happens because std::ostream specifically disallows being copied.
In this case, we return the left hand parameter as a reference. This not only prevents a copy of std::ostream from being made, it also allows us to “chain” output commands together, such as std::cout << point << std::endl;
You might have initially thought that since operator<< doesn’t return a value to the caller, we should define the function as returning void. But consider what would happen if our operator<< returned void. When the compiler evaluates std::cout << point << '\n'
, due to the precedence/associativity rules, it evaluates this expression as (std::cout << point) << '\n';
. std::cout << point
would call our void-returning overloaded operator<< function, which returns void. Then the partially evaluated expression becomes: void << '\n';
, which makes no sense!
By returning the out parameter as the return type instead, (std::cout<< point)
returns std::cout. Then our partially evaluated expression becomes: std::cout << '\n';
, which then gets evaluated itself!
Any time we want our overloaded binary operators to be chainable in such a manner, the left operand should be returned (by reference). Returning the left-hand parameter by reference is okay in this case -- since the left-hand parameter was passed in by the calling function, it must still exist when the called function returns. Therefore, we don’t have to worry about referencing something that will go out of scope and get destroyed when the operator returns.
Just to prove it works, consider the following example, which uses the Point class with the overloaded operator<< we wrote above:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
|
COPY
This produces the following result:
Point(2, 3.5, 4) Point(6, 7.5, 8)
Overloading operator>>
It is also possible to overload the input operator. This is done in a manner analogous to overloading the output operator. The key thing you need to know is that std::cin is an object of type std::istream. Here’s our Point class with an overloaded operator>>:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
|
COPY
Here’s a sample program using both the overloaded operator<< and operator>>:
1 2 3 4 5 6 7 8 9 10 11 |
|
COPY
Assuming the user enters 3.0 4.5 7.26
as input, the program produces the following result:
You entered: Point(3, 4.5, 7.26)
Conclusion
Overloading operator<< and operator>> make it extremely easy to output your class to screen and accept user input from the console.