Zoeken…


Invoering

Focus op de syntaxisdetails om interne DSL's in Kotlin te ontwerpen.

Infix-aanpak om DSL te bouwen

Als je hebt:

infix fun <T> T?.shouldBe(expected: T?) = assertEquals(expected, this)

u kunt de volgende DSL-achtige code in uw tests schrijven:

@Test
fun test() {
  100.plusOne() shouldBe 101
}

Oproepende methode om DSL te bouwen

Als je hebt:

class MyExample(val i: Int) {
  operator fun <R> invoke(block: MyExample.() -> R) = block()
  fun Int.bigger() = this > i
}

u kunt de volgende DSL-achtige code in uw productiecode schrijven:

fun main2(args: Array<String>) {
    val ex = MyExample(233)
    ex {
        // bigger is defined in the context of `ex`
        // you can only call this method inside this context
        if (777.bigger()) kotlin.io.println("why")
    }
}

Operators gebruiken met lambdas

Als je hebt:

val r = Random(233)
infix inline operator fun Int.rem(block: () -> Unit) {
  if (r.nextInt(100) < this) block()
}

U kunt de volgende DSL-achtige code schrijven:

20 % { println("The possibility you see this message is 20%") }

Extensies gebruiken met lambdas

Als je hebt:

operator fun <R> String.invoke(block: () -> R) = {
  try { block.invoke() }
  catch (e: AssertException) { System.err.println("$this\n${e.message}") }
}

U kunt de volgende DSL-achtige code schrijven:

"it should return 2" {
   parse("1 + 1").buildAST().evaluate() shouldBe 2
}

Als u zich verward voelt met shouldBe hierboven, bekijk dan de voorbeeld- Infix approach to build DSL .



Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow