Home > Backend Development > C++ > body text

How Can You Implement a Virtual `operator

Barbara Streisand
Release: 2024-10-26 06:57:03
Original
539 people have browsed it

How Can You Implement a Virtual `operator

Overcoming the Virtual Operator<< Conundrum

In an attempt to implement a virtual << operator, the following code results in a compiler error:

<code class="cpp">virtual friend ostream &amp; operator<<(ostream&amp; os,const Advertising&amp; add);</code>
Copy after login

The Root of the Issue

The defined operator<< is a free function, disabling its qualification as virtual due to the absence of a receiver object. To achieve the desired virtual functionality, the operator needs to be defined as a class member.

The Problem with Direct Definition

Defining operator<< as a class member poses a different issue. The operands will be reversed, causing complications when attempting to output an object:

<code class="cpp">MyClass myObject;
myObject << cout; // Legal but not our intended usage</code>
Copy after login

The Solution: Indirect Approach

To navigate these challenges, introduce an additional virtual function:

<code class="cpp">class MyClass {
public:
    virtual void print(ostream&amp; where) const;
};</code>
Copy after login

Then, redefine operator<< as a free function, leveraging the new virtual function:

<code class="cpp">ostream&amp; operator<< (ostream&amp; out, const MyClass&amp; mc) {
    mc.print(out);
    return out;
}</code>
Copy after login

This setup allows the operator<< free function to maintain the correct parameter order while enabling customization of the output behavior in subclasses through the print() function.

The above is the detailed content of How Can You Implement a Virtual `operator. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!