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 Class Inheritance Overriding Methods

Object-Oriented Swift - fullName() override

I see nothing wrong with my code. Works perfect in XCode. Any ideas?

objects.swift
class Person {
  let firstName: String
  let lastName: String 

  init(firstName: String, lastName: String) {
    self.firstName = firstName
    self.lastName = lastName
  }

  func fullName() -> String {
    return "\(firstName) \(lastName)"
  }
}

// Enter your code below

class Doctor: Person {
    override func fullName() -> String {
        return "\("Dr.") \(firstName) \(lastName)"
    }

}

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

1 Answer

andren
andren
28,558 Points

The string it produces is not the same as the one the challenge asks for. The challenge asks that the overridden method returns a string that contains "Dr." and the last name of the person, not the fullname.

Like this:

class Doctor: Person {
    override func fullName() -> String {
        return "Dr. \(lastName)" // Removed firstName
    }

}

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

I also removed the interpolation around the word "Dr." since it is not needed, and removed the explicit call to init, as that method is called automatically when you call the Doctor class.