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

Reagen Rahardjo
Reagen Rahardjo
3,770 Points

Is the way I override fullName wrong? I got correct result in Xcode

Hi,

I tried this in xcode it works. I dont know why this doesnt work on the challenge code playground. is the way I override func getFullName wrong?

please advice

Thank you in advance

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: "Dr.", lastName: "Smith")

    }

}

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

2 Answers

Tim Rach
seal-mask
.a{fill-rule:evenodd;}techdegree
Tim Rach
Full Stack JavaScript Techdegree Student 25,127 Points

Hey, your override ist wrong here. As mentioned in the question, you have to override the getFullName() method, not the init() method as you did.

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

then you are abled to call the method on an instance of Doctor and it should work for you.

Reagen Rahardjo
Reagen Rahardjo
3,770 Points

Hi Tim,

Thanks alot for the help... really appreciate