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 trialNader Adam
2,863 Pointscan any body to help me there to solve this question
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
1 Answer
Ethan Hansen
8,862 PointsMake a sub class of person and call it doctor. Then change the doctor subclass to return Dr.(last name) not (first name
- last name). Watch the video again if it helps.
Martin Wildfeuer
Courses Plus Student 11,071 PointsMartin Wildfeuer
Courses Plus Student 11,071 PointsHey there! Please post an example of what you have tried so far and specify what you don't understand. This way it's easier to help. I am not a big fan of just posting a solution here, but if we work it out together I'd be more than happy to provide it.