Skip to content

Instantly share code, notes, and snippets.

@blladnar
Created October 28, 2011 12:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blladnar/1322166 to your computer and use it in GitHub Desktop.
Save blladnar/1322166 to your computer and use it in GitHub Desktop.
Cast Operator Basics
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