11
파이썬에서 상속의 요점은 무엇입니까?
다음과 같은 상황이 있다고 가정합니다. #include <iostream> class Animal { public: virtual void speak() = 0; }; class Dog : public Animal { void speak() { std::cout << "woff!" <<std::endl; } }; class Cat : public Animal { void speak() { std::cout << "meow!" <<std::endl; } }; void makeSpeak(Animal &a) …
83
python
oop
inheritance