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 trials t
2,699 PointsOverriding Methods Objective Swift
I have passed this objective using the following code but I would like to know why I didn't have to initialize Doctor? can someone please explain. Thanks
2 Answers
Jonathan Ruiz
2,998 PointsThis is the code I had for the challenge. I was confused when this happened to me to however I think its because what your doing is overriding a function. If you do this challenge in Xcode and override the function when you create the constant someDoctor then create an instance of Doctor. Xcode autocompletes it to include the firstName parameter even though our new function returns a string where thats taken out. So your not affecting the initializer your changing the fullName method.
class Person {
let firstName: String
let lastName: String
init(firstName: String, lastName: String) {
self.firstName = firstName
self.lastName = lastName
}
func fullName() -> String {
return "\(firstName) \(lastName)"
}
}
class Doctor: Person {
override func fullName() -> String {
return "Dr. \(lastName)"
}
}
let someDoctor = Doctor(firstName: "Elliot", lastName: "Alderson")
print(someDoctor)
s t
2,699 PointsThanks! That kinda makes sense!
Jonathan Ruiz
2,998 PointsHappy to help ! Im pretty sure thats what it is