followedBy
将 this
和 tail 连接.
连接后可以保证 ConstrainSingle 的元素单独存在.
例:
val a = PlainText("Hello ")
val b = PlainText("world!")
val c: MessageChain = a + b
println(c) // "Hello world!"
Content copied to clipboard
在 Java 使用 plus
将 this
和 tail 连接.
连接后可以保证 ConstrainSingle 的元素单独存在.
例:
val a = PlainText("Hello ")
val b = PlainText("world!")
val c: MessageChain = a + b
println(c) // "Hello world!"
在 Java 使用 plus