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 trialMemory Mungofa
3,343 Pointsplease help im stuck on what i should code on the set method
we need to add getter & setter methods to the fahrenheit property of the temperature class. add a getter method to the access the value of the fahrenheitn property . Then add asetter method when the user assigns a value to the fahrenheit property , the setter method will calculate & assign a value to the celsius property. NB: Ceisius(Fahrenheit - 32)/1.8))
class Temperature {
var celsius: Float = 0.0
var fahrenheit: Float {
get {
return (celsius * 1.8) + 32.0
}
set
{
}
}
}
1 Answer
Holger Liesegang
50,595 PointsHi Memory Mungofa !
You can set celsius like this: celsius = (newValue - 32) / 1.8
because setters can use a special variable named newValue to access the new value.
class Temperature {
var celsius: Float = 0.0
var fahrenheit: Float {
get {
return (celsius * 1.8) + 32.0
}
set {
celsius = (newValue - 32) / 1.8
}
}
}
Memory Mungofa
3,343 PointsMemory Mungofa
3,343 Pointsbest answer . Thank you