forked from SurvivalCodingCampus/winter_kotlin_study
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWand.kt
35 lines (30 loc) · 785 Bytes
/
Wand.kt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package org.hyunjung.day05
class Wand(
name: String,
power: Double
) {
init {
validateName(name)
validatePower(power)
}
var name: String = name
set(value) {
validateName(value)
field = value
}
var power: Double = power
set(value) {
validatePower(value)
field = value
}
private fun validateName(value: String) {
require(value.isNotBlank() && value.length >= 3) {
"지팡이 이름은 null일 수 없고, 3문자 이상이어야 합니다."
}
}
private fun validatePower(value: Double) {
require(value in 0.5..100.0) {
"지팡이의 마력은 0.5 이상 100.0 이하여야 합니다."
}
}
}