fix: use abstract
This commit is contained in:
parent
882131784b
commit
cdd8fd1645
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
ex0*/obj/*.o
|
||||||
|
ex0*/ex0*
|
@ -10,6 +10,7 @@ Cat::Cat()
|
|||||||
|
|
||||||
Cat& Cat::operator=(const Cat& src)
|
Cat& Cat::operator=(const Cat& src)
|
||||||
{
|
{
|
||||||
|
*this->brain = *src.brain;
|
||||||
this->type = src.type;
|
this->type = src.type;
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
@ -22,6 +23,7 @@ Cat::~Cat()
|
|||||||
|
|
||||||
Cat::Cat(const Cat& src): Animal()
|
Cat::Cat(const Cat& src): Animal()
|
||||||
{
|
{
|
||||||
|
this->brain = new Brain();
|
||||||
*this = src;
|
*this = src;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -11,6 +11,7 @@ Dog::Dog()
|
|||||||
|
|
||||||
Dog& Dog::operator=(const Dog& src)
|
Dog& Dog::operator=(const Dog& src)
|
||||||
{
|
{
|
||||||
|
*this->brain = *src.brain;
|
||||||
this->type = src.type;
|
this->type = src.type;
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
@ -23,6 +24,7 @@ Dog::~Dog()
|
|||||||
|
|
||||||
Dog::Dog(const Dog& src): Animal()
|
Dog::Dog(const Dog& src): Animal()
|
||||||
{
|
{
|
||||||
|
this->brain = new Brain();
|
||||||
*this = src;
|
*this = src;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -15,6 +15,10 @@ int main()
|
|||||||
delete i;
|
delete i;
|
||||||
const WrongAnimal* k = new WrongCat();
|
const WrongAnimal* k = new WrongCat();
|
||||||
k->makeSound();
|
k->makeSound();
|
||||||
|
Dog test;
|
||||||
|
{
|
||||||
|
Dog test2 = test;
|
||||||
|
}
|
||||||
delete k;
|
delete k;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -23,11 +23,6 @@ AAnimal::~AAnimal()
|
|||||||
std::cout << "~AAnimal()" << std::endl;
|
std::cout << "~AAnimal()" << std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
void AAnimal::makeSound() const
|
|
||||||
{
|
|
||||||
std::cout << "OuGAABounga" << std::endl;
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string AAnimal::getType() const
|
std::string AAnimal::getType() const
|
||||||
{
|
{
|
||||||
return this->type;
|
return this->type;
|
||||||
|
@ -12,7 +12,7 @@ class AAnimal
|
|||||||
|
|
||||||
std::string getType() const;
|
std::string getType() const;
|
||||||
|
|
||||||
virtual void makeSound() const;
|
virtual void makeSound() const = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
std::string type;
|
std::string type;
|
||||||
|
@ -10,6 +10,7 @@ Cat::Cat()
|
|||||||
|
|
||||||
Cat& Cat::operator=(const Cat& src)
|
Cat& Cat::operator=(const Cat& src)
|
||||||
{
|
{
|
||||||
|
*this->brain = *src.brain;
|
||||||
this->type = src.type;
|
this->type = src.type;
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
@ -22,6 +23,7 @@ Cat::~Cat()
|
|||||||
|
|
||||||
Cat::Cat(const Cat& src): AAnimal()
|
Cat::Cat(const Cat& src): AAnimal()
|
||||||
{
|
{
|
||||||
|
this->brain = new Brain();
|
||||||
*this = src;
|
*this = src;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -11,6 +11,7 @@ Dog::Dog()
|
|||||||
|
|
||||||
Dog& Dog::operator=(const Dog& src)
|
Dog& Dog::operator=(const Dog& src)
|
||||||
{
|
{
|
||||||
|
*this->brain = *src.brain;
|
||||||
this->type = src.type;
|
this->type = src.type;
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
@ -23,6 +24,7 @@ Dog::~Dog()
|
|||||||
|
|
||||||
Dog::Dog(const Dog& src): AAnimal()
|
Dog::Dog(const Dog& src): AAnimal()
|
||||||
{
|
{
|
||||||
|
this->brain = new Brain();
|
||||||
*this = src;
|
*this = src;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -11,6 +11,10 @@ int main()
|
|||||||
delete j;
|
delete j;
|
||||||
const AAnimal* i = new Cat();
|
const AAnimal* i = new Cat();
|
||||||
delete i;
|
delete i;
|
||||||
// const AAnimal* meta = new AAnimal();
|
Dog test;
|
||||||
|
{
|
||||||
|
Dog test2 = test;
|
||||||
|
}
|
||||||
|
//const AAnimal* meta = new AAnimal();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user