Created
February 7, 2011 03:18
-
-
Save raptium/813955 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using std::cout; | |
using std::endl; | |
using std::string; | |
class Counter { | |
private: | |
int _count; | |
public: | |
Counter() { | |
this->_count = 0; | |
} | |
operator int() { | |
return this->_count++; | |
} | |
operator string() { | |
return "HAHA"; | |
} | |
}; | |
int main() { | |
Counter a; | |
cout << a << endl; | |
cout << (string)a << endl; | |
cout << a << endl; | |
cout << a << endl; | |
cout << a << endl; | |
cout << (string)a << endl; | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment