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 trialJason Zheng
7,943 PointsWhy can't my code work?
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()
Paul Brazell
14,371 PointsChris, 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
14,371 PointsTake 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()
Jason Zheng
7,943 PointsThanks, Paul!
chrisverra
3,760 PointsAh I see Paul, my mistake. Good oppertunity to learn for me as well :)
chrisverra
3,760 Pointschrisverra
3,760 PointsI 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