+ 2
Type Properties
In the block of code below, is computedProp a variable? How is computedProp different from an int function that simply returns value 4? class SomeClass { static var storedProp = "Some value." static var computedProp: Int { return 42 } } print(SomeClass.storedProp) print(SomeClass.computedProp)
2 Respostas
0
Which language it is?
0
swift