devxlogo

Overloading istream operator >> for bool

Question:
I am trying to overload the istream operator >> to work with type “bool”. From my point of view the code looks okay, except the VC++ 6.0 compiler tells me:

binary '>>' : no operator defined which takes a right-hand operand of type 'bool'

Here is my code snipet:

// overloaded operator declaration:istream &operator> > (istream &, bool &);// overloaded function:istream &operator>> (istream &input, bool &key) {   int test;   input >> test;   if (test != 0)      key = true;   else      key = false;   return input;}// code used in main:cout << "
Press 0 to exit this program or any key to continue.
:";cin >> testKey;

Answer:
C++ already defines an overloaded version of istream’s operator>> for type bool. You shouldn’t try to do it yourself. Note also that operator>> (as well as all the components of the Standard Library) are now declared in namespace std. You tried to overload it globally, and hence, the compiler didn’t complain about re-definitions.First, make sure to include rather than the deprecated . Also, use an appropriate using-declaration or using-directive to access the overloaded operator>>, as follows:

#include using namespace std; //using directiveint main{ //...}

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Five Early Architecture Decisions That Quietly Get Expensive

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.