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 Complex Data Structures Adding Instance Methods

Jason Zheng
Jason Zheng
7,943 Points

Why can't my code work?

structs.swift
struct Person {
    let firstName: String
    let lastName: String
    func getFullName() -> (String) {
       let fullName = firstName + " " + lastName
       return fullName
    }
}

let aPerson = Person(firstName: "Jason", lastName: "Zheng")
let fullName = aPerson.getFullName()

I think because your function does not know about let firstName and let lastName you should hand them as parameters

func getFullName(String: firstName, String: lastName)

something like that

Paul Brazell
Paul Brazell
14,371 Points

Chris, that would be the case if you were doing external parameters. Since the function is defined inside the body of the struct, it has access to all of its properties.

2 Answers

Paul Brazell
Paul Brazell
14,371 Points

Take away the parenthesis in the return type of the getFullName method. This worked for me.

struct Person {
    let firstName: String
    let lastName: String
    func getFullName() -> String {
       let fullName = firstName + " " + lastName
       return fullName
    }
}

let aPerson = Person(firstName: "Jason", lastName: "Zheng")
let fullName = aPerson.getFullName()

Ah I see Paul, my mistake. Good oppertunity to learn for me as well :)