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 trialAdam Beck
9,345 PointsClasses - not sure where to place instance and feel like i'm missing something from this question..
I thought instances were written below, but I was trying to match what I saw on the video and couldn't find a correct answer in Xcode. Please help!
// Enter your code below
class Shape {
var numberOfSides: Int
let someShape
init (){
}
}
1 Answer
Luke Dawes
9,739 PointsHi Adam,
Classes, unlike structs, require that you define an initializer method, or init method, within the definition before you can declare an instance of that class. You then declare an instance of that class outside of it, as seen here:
class Shape {
var numberOfSides: Int
init (numberOfSides: Int){
self.numberOfSides = numberOfSides
}
}
let someShape = Shape(numberOfSides: 3)
The init method will allow you to set values to the stored properties of the class, unless they've already been defined in the class or provided with default values. I'm not sure which Code Challenge you're working on, if any, but you can see I've declared an instance of the Shape
class and assigned it to the someShape
constant, provided it with three sides in the init method.
Hope that helps!