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 trialKanish Chhabra
2,151 PointsHelp me further
IDK how to create an instance with a class, it isn't showing values even after "initialization"
//Classes
class Shape {
let numberOfSides: Int
init(numberOfSides: Int) {
self.numberOfSides = numberOfSides
}
}
let someShape: Shape
1 Answer
Alexander Davison
65,469 PointsTo make a instance of a class, you basically "call" the class. It may seem like you are "calling" the class, but really behind the scenes Swift is actually calling the class's init
method.
Here's how you would make a instance of the Shape
class:
let someShape: Shape = Shape(numberOfSides: 4)
I hope this helps. ~Alex