操作符重载

2022-09-19

kotlin

游客是你,风景是我,无法避免,让你经过。——《稀客》

中文文档

kotlin里我们可以进行操作符重载,以达到对象+对象-对象这样的操作:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 定义一个类
data class Point(val x: Int, val y: Int)

// 对其进行操作符重载,让其能够使用-Point()语法
operator fun Point.unaryMinus() = Point(-x, -y)

val point = Point(10, 20)

println(-point) // 输出“Point(x=-10, y=-20)”

// 对String进行操作符重载,让其能够使用 +"" 语法
operator fun String.unaryPlus() = this + this

println(+"x")

// 对其进行二元操作符重载,使其可以使用 Point() + Point() 语法
operator fun Point.plus(s: Point) = Point(this.x + s.x, this.y + s.y)

println(Point(1, 2) + Point(3, 4))

效果如下

image-20220919175516534