reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50
   51
   52
   53
   54
   55
   56
   57
   58
   59
   60
   61
   62
   63
   64
   65
   66
   67
   68
   69
#include <stdio.h>
#include <stdint.h>

class A
{
public:
    A(int a) : 
        m_a(a)
    {
    }
    virtual ~A(){}
    virtual int get2() const { return m_a; }
    virtual int get() const { return m_a; }
protected:
    int m_a;    
};

class B : public A
{
public:
    B(int a, int b) : 
        A(a),
        m_b(b)
    {
    }

    ~B() override
    {
    }

    int get2() const override
    {
        return m_b;
    }
    int get() const override
    {
        return m_b;
    }   
            
protected:
    int m_b;
};

struct C
{
    C(int c) : m_c(c){}
    virtual ~C(){}
    int m_c;
};

class D : public C, public B
{
public:
    D(int a, int b, int c, int d) : 
        C(c),
        B(a, b),
        m_d(d)
    {
    }
protected:
    int m_d;
};
int main (int argc, char const *argv[], char const *envp[])
{
    D *good_d = new D(1, 2, 3, 4);
    D *d = nullptr;
    return d->get();
}