操作符重载

2022-09-29 09:01:27 浏览数 (1)

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

中文文档

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

代码语言:javascript复制
// 定义一个类
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))

效果如下

0 人点赞