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 trialTariq Qazzaz
1,660 Pointsmy initialization is not working .
hi guys .. i followed the steps in the last lesson to create explicit initialization
but its not working
struct Location {
let latitude: Double
let longitude: Double
}
class Business {
let name : String
let location : Location
init(name: String , latitude: Double , longitude: Double){
self.name = name
self.location = (latitude : latitude , longitude : longitude)
}
}
let someBusiness = Business(name : "treehouse" , latitude : 10.0 , longitude : 20.0)
1 Answer
Mitch Little
11,870 PointsHi Tariq,
Remember location is of type Location. This means that in this code challenge you are essentially creating two instances in 'someBusiness' to initialise both of the classes.
struct Location {
let latitude: Double
let longitude: Double
}
class Business {
let name: String
let location: Location
init(name: String, location: Location) {
self.name = name
self.location = location
}
}
let someBusiness = Business(name: "London", location: Location(latitude: 51.5074, longitude: 0.1278))
You could also create a separate instance of Location and assign this constant to location:
let someLocation = Location(latitude: 51.5057, longitude: 0.1278)
let someBusiness = Business(name: "London", location: someLocation)
I hope this helps.
All the best,
Mitch