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 trialErik Trinidad
3,696 PointsWhat is Inheritance, Task 3 of 3. What's wrong with my code?
class Button { var width: Double var height: Double
init(width:Double, height:Double){ self.width = width self.height = height } }
class RoundButton: Button { var cornerRadius: Double = 5.0 }
let rounded = RoundButton() //this line particularly
class Button {
var width: Double
var height: Double
init(width:Double, height:Double){
self.width = width
self.height = height
}
}
class RoundButton: Button {
var cornerRadius: Double = 5.0
}
let rounded = RoundButton()
2 Answers
Daniel Sattler
4,867 PointsYou did fine so far, you just forgot to assign values to the super class
instead of
let rounded = RoundButton()
try
var rounded = RoundButton(width: 2.0,height: 2.0)
Variable or constant doesn't matter in this case... and 2.0 is just an example... important is that you give the Super Class some values so it knows what to do. I hope this helps
james white
78,399 PointsThis question is also answered more fully in this thread: