Computed Property

권현석·2022년 12월 30일
0
var aProperty: Int {
	return 2 + 5
}

위와 같은 property를 computed property라 하며, 이는 Output(return)값을 가진다.
return 2 + 5를 'computation'이라 하며 이로인해 이 computed property의 ouput은 '7'이 된다.

profile
wanna be an iOS developer

0개의 댓글