Daily Archive: 2017-06-24

Kotlin Reference: Annotations

Annotation Declaration   注解可以为代码添加元数据。在类前使用 annotation 修饰符声明注解: [code lang=”kotlin”]annotation class Fancy[/code]   在注解类上使用元注解可以为注解添加额外的属性: @Target 指定可以被注解的元素类型(类、函数、属性、表达式等); @Retention 指…
Read more