get 메서드와 set 메서드를 이용해 저번에 적은 코드(https://bruders.tistory.com/34)를 좀 다듬어보자. class Glass(content_param: Int, val capacity: Int){ constructor(part: Double, capacity: Int): this((part*capacity).toInt(), capacity) var drink = "water" set(value){ field = value.toUpperCase() } var content = content_param set(value){ if(value capacity) field = capacity if(value in 0..capacity){..