我正在做Kotlin Koans's Operator Overloading练习,想知道编译器如何选择要使用的MyDate.plus()
函数:
import TimeInterval.*
import java.util.Calendar
data class MyDate(val year: Int, val month: Int, val dayOfMonth: Int)
enum class TimeInterval { DAY, WEEK, YEAR }
operator fun MyDate.plus(timeInterval: TimeInterval) = addTimeIntervals(timeInterval, 1)
class FullTimeInterval(val timeInterval: TimeInterval, val number: Int)
operator fun TimeInterval.times(number: Int) = FullTimeInterval(this, number)
operator fun MyDate.plus(timeIntervals: FullTimeInterval)
= addTimeIntervals(timeIntervals.timeInterval, timeIntervals.number)
fun task1(today: MyDate): MyDate {
return today + YEAR + WEEK
}
fun task2(today: MyDate): MyDate {
return today + YEAR * 2 + WEEK * 3 + DAY * 5
}
答案 0 :(得分:2)
您有两个类:TimeInterval
和FullTimeInterval
以及两个重载函数:
MyDate.plus(timeIntervals: TimeInterval)
和MyDate.plus(timeIntervals: FullTimeInterval)
编译器知道参数的类型,并通过签名选择最接近的函数。决定是在编译时做出的,并取决于参数的计算类型。
您可以在以下位置找到有关此信息的更多信息 https://jetbrains.github.io/kotlin-spec/#overload-resolution