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 trialDjalma Barbieri
2,331 Pointstemperature
Hello, I did this code in Xcode, and it works, but I have a "Bummer!" in the compilation and no errors on preview. Can you help me ?
class Temperature { var celsius: Float = 0.0
init (celsius: Float) {
self.celsius = celsius
}
}
class Fahrenheit : Temperature { var fahrenheit : Float = 0.0
init (celsius: Float, fahrenheit: Float){
self.fahrenheit = fahrenheit
super.init(celsius: celsius)
}
func Fahrenheit (celsius: Float) -> Float {
return ((celsius * 1.8) + 32)
}
}
class Temperature {
var celsius: Float = 0.0
init (celsius: Float) {
self.celsius = celsius
}
}
class Fahrenheit : Temperature {
var fahrenheit : Float = 0.0
init (celsius: Float, fahrenheit: Float){
self.fahrenheit = fahrenheit
super.init(celsius: celsius)
}
func Fahrenheit (celsius: Float) -> Float {
return ((celsius * 1.8) + 32)
}
}
1 Answer
Brendan Whiting
Front End Web Development Techdegree Graduate 84,738 PointsThe "bummer" is misleading. It's not a bug you're just not doing the assignment as it wants. They want you to create a property within the temperature class which will be a computed property. It's a lot simpler than you think. Try something like this:
class Temperature {
var celsius: Float = 0.0
var fahrenheit: Float {
return ((celsius * 1.8) + 32)
}
}
Anneke Keller
5,667 PointsAnneke Keller
5,667 PointsI think it should be solved like this: