Based on http://en.wikipedia.org/wiki/Virtual_inheritance

class Animal 
{
...
};

// Two classes virtually inheriting Animal:
class Mammal : public virtual Animal 
{
...
};

I also saw books use the following syntax,

class Mammal : virtual public Animal 
{
...
};

Question> Which is one the C++ standard?

Thank you

link|improve this question

75% accept rate
FYI this isn't multiple inheritance, this is virtual inheritance that you're asking about. – Adam Rosenfield Mar 29 '11 at 2:44
@Adam, we should use virtual inheritance from the base class when we use multiple inheritance. – q0987 Mar 29 '11 at 2:52
feedback

2 Answers

up vote 6 down vote accepted

From ISO/IEC 14882:2003(E) - 10.1

A list of base classes can be specified in a class definition using the notation:

base-clause:
    : base-specifier-list

base-specifier-list:
    base-specifier
    base-specifier-list , base-specifier

base-specifier:
    ::opt nested-name-specifieropt class-name
    virtual access-specifier opt ::opt nested-name-specifieropt class-name
    access-specifier virtual opt ::opt nested-name-specifieropt class-name

access-specifier:
    private
    protected
    public

Notice that either is recommended.

link|improve this answer
Q> When did you find this? -- thank you – q0987 Mar 29 '11 at 2:53
@q0987 - Google search on mentioned standard name, you should be able to find one :) – Mahesh Mar 29 '11 at 3:23
1  
this is the grammar, but what of the semantics, ie is the meaning equivalent ? – Matthieu M. Mar 29 '11 at 6:54
feedback

Both are standard. Use whichever the local coding conventions require.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.