Skip to content

SAM-带接收者编译器插件

sam-with-receiver 编译器插件将经注解的 Java "单抽象方法" (SAM) 接口方法的第一个形参变为 Kotlin 中的接收者。这种转换仅当 SAM 接口作为 Kotlin lambda 传入时才有效,无论是对于 SAM 适配器还是 SAM 构造函数(详情请参阅 SAM 转换文档)。

这里是一个示例:

java
public @interface SamWithReceiver {}

@SamWithReceiver
public interface TaskRunner {
    void run(Task task);
}
kotlin
fun test(context: TaskContext) {
    val runner = TaskRunner {
        // 在这里 'this' 是 'Task' 的一个实例

        println("$name is started")
        context.executeTask(this)
        println("$name is finished")
    }
}

Gradle

用法与 all-openno-arg 相同,不同之处在于 sam-with-receiver 没有内置预设,你需要指定自己的特殊处理注解列表。

kotlin
plugins {
    kotlin("plugin.sam.with.receiver") version "2.2.10"
}
groovy
plugins {
    id "org.jetbrains.kotlin.plugin.sam.with.receiver" version "2.2.10"
}

然后指定 SAM-带接收者注解的列表:

groovy
samWithReceiver {
    annotation("com.my.SamWithReceiver")
}

Maven

xml
<plugin>
    <artifactId>kotlin-maven-plugin</artifactId>
    <groupId>org.jetbrains.kotlin</groupId>
    <version>${kotlin.version}</version>

    <configuration>
        <compilerPlugins>
            <plugin>sam-with-receiver</plugin>
        </compilerPlugins>

        <pluginOptions>
            <option>
                sam-with-receiver:annotation=com.my.SamWithReceiver
            </option>
        </pluginOptions>
    </configuration>

    <dependencies>
        <dependency>
            <groupId>org.jetbrains.kotlin</groupId>
            <artifactId>kotlin-maven-sam-with-receiver</artifactId>
            <version>${kotlin.version}</version>
        </dependency>
    </dependencies>
</plugin>

命令行编译器

将插件 JAR 文件添加到编译器插件的类路径中,并指定 sam-带接收者注解的列表:

bash
-Xplugin=$KOTLIN_HOME/lib/sam-with-receiver-compiler-plugin.jar
-P plugin:org.jetbrains.kotlin.samWithReceiver:annotation=com.my.SamWithReceiver