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 Methods

can any body to help me there to solve this question

classes.swift
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
Martin Wildfeuer
Martin Wildfeuer
Courses Plus Student 11,071 Points

Hey 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.

1 Answer

Make 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.