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

mahi
mahi
7,137 Points

I can't figure out what the problem is. I checked it several times,.

Don't know what the problem is. there's no need to override init method because we aren't modifying any values. I already override the getFullName() method and returned the value.

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

class Doctor: Person{

    override func getFullName() -> String {
        return "Dr. \(firstName) \(lastName)"
    }
}
let someDoctor = Doctor(firstName: "Maheep", lastName: "Chhabra")

1 Answer

They get a bit tricky. For Doctor you return only "Dr." and lastName:

    override func getFullName() -> String {
        return "Dr. \(lastName)"
    }
mahi
mahi
7,137 Points

hehe. I thought that was just an example for reference and I could return both firstName and lastName. Thanks alot by the way.