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't figure out what it wants me to do to get this to pass.

title. I found this confusing and can't seem to see what I'm missing here.

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

class Doctor: Person{

    override init(firstName: String, lastName: String) {
        super.init(firstName: firstName, lastName: lastName)
        self.firstName = "Dr"
    }
}

let someDoctor = Doctor(firstName: "Dr", lastName: "Smith")

2 Answers

Hi Andrew!

Your solution doesn't quite do what the challenge requests. Your code currently treats "Dr." as an instance of firstName, but the challenge wants you to change the parent class to either include a new parameter, or edit the return value.

There are two solutions that work. The simplest solution is to override the getFullName function. That looks like this.

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)"
    }

class Doctor: Person {

    override func getFullName() -> String {
        return "Dr. \(lastName)"
    }

}

let someDoctor = Doctor(firstName: "Sam", lastName: "Smith")

someDoctor.getFullName()

Another option is to introduce a new parameter with a default value of "Dr." This method is the more flexible of the two options, as you could feasibly change the default profession if you wanted to.

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 {

    var profession: String = "Dr."

    override func getFullName() -> String {
        return "\(profession) \(lastName)"
    }

}

let someDoctor = Doctor(firstName: "Sonia", lastName: "Feldman")

someDoctor.getFullName()

Andrew, basically it wants you to override the function, not the initializer:

class Doctor: Person {

    override func getFullName() -> String {
        return "Dr. \(lastName)"
    }
}

let someDoctor = Doctor(firstName: "Sam", lastName: "Smith")

Also, you don'l call the Doctor initializer with a first name of "Dr.", that is provided by the overridden function.