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 trialPaul Denlinger
2,380 PointsWhere to set default for wheels, doors?
Not quite sure about where to set the default for the wheels, doors. Help!
class Vehicle {
let wheels: Int
let doors: Int
// Designated initializer
init(wheels:Int, doors:Int){
self.wheels = wheels
self.doors = doors
}
}
class Car: Vehicle {
// A car must default to 4 wheels and 4 doors
var auto = Car(wheels = 4, doors = 4)
init(){
// call super.init
super.init()
}
}
1 Answer
Jhoan Arango
14,575 PointsHey Paul, you are creating an instance of car inside the class. First delete the “var auto” instance, and then on the super.init() add the default values. It should look something like this.
super.init(wheels: 4, doors: 4)
remember, with the super.init you are calling the initializer from the super class “Vehicle”. All you are doing now is adding default values to it. Please let me know if it helps.
Paul Denlinger
2,380 PointsPaul Denlinger
2,380 PointsThank you for the input; that worked.
I need to practice this more in order to get better, but I think that I get the general idea.
Thanks again!
Jhoan Arango
14,575 PointsJhoan Arango
14,575 PointsNo problem... That’s what I try to do everyday, practice and practice. It’s the only way to get better.