[ create a new paste ] login | about

Link: http://codepad.org/eQCJBkxA    [ raw code | output | fork ]

C++, pasted on Feb 5:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
    #include <iostream>
    
    struct A
    {
        virtual void AMethod() { std::cout << "In A!" << std::endl; }
    };

    class B : public A
    {
        virtual void AMethod() { std::cout << "In B!" << std::endl; } //Hides A::AMethod
    };

    int main()
    {
        B myB;
        //myB.AMethod(); //Error: AMethod is private
        static_cast<A*>(&myB)->AMethod(); //Ok
        return 0;
    }


Output:
1
In B!


Create a new paste based on this one


Comments: