Sök…


Introduktion

Fokusera på syntaxdetaljer för att utforma interna DSL: er i Kotlin.

Infix-metod för att bygga DSL

Om du har:

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

Du kan skriva följande DSL-liknande kod i dina test:

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

Övergripande åberopar metod för att bygga DSL

Om du har:

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

Du kan skriva följande DSL-liknande kod i din produktionskod:

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")
    }
}

Använda operatörer med lambdas

Om du har:

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

Du kan skriva följande DSL-liknande kod:

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

Använda tillägg med lambdas

Om du har:

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

Du kan skriva följande DSL-liknande kod:

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

Om du känner dig förvirrad med shouldBe ovan, se exemplet Infix approach to build DSL .



Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow