Created
October 28, 2011 12:34
-
-
Save blladnar/1322166 to your computer and use it in GitHub Desktop.
Cast Operator Basics
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
class A | |
{ | |
public: | |
A(int n): m_n(n){} | |
int GetNumber() const { return m_n; } | |
operator int() const { return GetNumber(); } | |
protected: | |
int m_n; | |
}; | |
int main() | |
{ | |
A a(3); | |
int n = a;//Instead of using a.GetNumber(); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment