Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS Object-Oriented Swift 2.0 Class Inheritance Overriding Properties

why we have made another init methode in the subClass ??

i have understand the use of the superClass and the SubClass .. but why he has made another init methode in the SubClass ?

1 Answer

John Ambrose
John Ambrose
7,216 Points

The reason that we are overriding the original Initializing class is because all classes have to have their parameters set when they initialize.

For the SuperEnemy SubClass Pasan wanted the SuperEnemies health to be 50 rather than the default value of 2.

Since this is a different value than the initial value provided in the SuperClass Enemy, we have to create a "new" Init for the SubClass during which we call the inherited Init method but then set the life value to the newer value.

If he had simply let the original life value be inherited at 2, no additional Init call would need to be defined for Super Enemy Subclass.