Ricerca…


introduzione

Concentrati sui dettagli della sintassi per progettare i DSL interni in Kotlin.

Approccio Infix per creare DSL

Se hai:

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

puoi scrivere il seguente codice simile a DSL nei tuoi test:

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

Sovrascrivere il metodo invoke per creare DSL

Se hai:

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

puoi scrivere il seguente codice simile a DSL nel tuo codice di produzione:

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

Usando operatori con lambda

Se hai:

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

Puoi scrivere il seguente codice simile a DSL:

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

Usando le estensioni con lambda

Se hai:

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

Puoi scrivere il seguente codice simile a DSL:

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

Se ti senti confuso con shouldBe sopra, consulta l'esempio di Infix approach to build DSL .



Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow