I am getting a Segmentation 11 Fault in my console when I run, However it is building just fine. Any reason for this? I'd like some help pointing it out so I don't make the same simple mistake! Thanks guys. Just messing around with inheritance for nearly the first time
class Human
{
public:
Human( std::string const &InitialName = "John Doe" )
: Name( InitialName )
{ }
private:
std::string Name;
public:
std::string const &QueryName( ) const
{
return( Name );
}
};
class Child : public Human // Child is-a human
{
public:
Child( std::string const &InitialName = "John Doe" )
: Human( InitialName )
{ }
private:
using Human::Name;
public:
using Human::QueryName;
};
class Parent : public Human // Parent is-a human
{
public:
Parent( std::string const &InitialName = "John Doe" )
: Human( InitialName )
{ }
private:
using Human::Name;
public:
using Human::QueryName;
};
See the logic?
Also, The "using" statements don't have to be there, but I put them there to emphasise the inheritance. I recommend reading this: http://www.cplusplus.com/doc/tutorial/inheritance/