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 trialMatt Conway
1,572 PointsOverriding Methods
Not sure exactly how to override the method ...
Challenge Task 1 of 1
I've provided a base class Person in the editor below. Once an instance of Person is created, you can call getFullName() and get a person's full name.
Your job is to create a class named Doctor that overrides the getFullName() method. Once you have a class definition, create an instance and assign it to a constant named someDoctor.
For example, given the first name "Sam", and last name "Smith", calling getFullName() on an instance of Person would return "Sam Smith", but calling the same method on an instance of Doctor would return "Dr. Smith".
/Users/mattconway/Desktop/Screen Shot 2016-01-26 at 5.37.28 PM.png
class Person {
let firstName: String
let lastName: String
init(firstName: String, lastName: String) {
self.firstName = firstName
self.lastName = lastName
}
func getFullName() -> String {
return "\(firstName) \(lastName)"
}
}
// Enter your code below
class Doctor: Person {
override init(firstName: String) {
self.firstName = firstName
self.lastName = lastName
}
}
let someDoctor = Doctor("Dr. \(lastName)")
print(someDoctor)
1 Answer
Nathan Tallack
22,160 PointsHi Matt,
Because your subclass does not introduct any new properties that need to be initialised, there is no need for you to write an initialiser for it. It will just use the one defined by the parent class.
So that means you just need to override the getFullName method within it so tht it returns Dr. Smith rather than Sam Smith. The code would look like this.
class Doctor: Person {
override func getFullName() -> String {
return "Dr. \(lastName)"
}
}
let someDoctor = Doctor(firstName: "Sam", lastName: "Smith")
So now a calling getFullName on the Doctor object would return "Dr. Smith" by using that overridden method in the subclass. :)
Matt Conway
1,572 PointsMatt Conway
1,572 PointsThanks for clear explanation!!