IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> Kotlin 注解 -> 正文阅读

[Java知识库]Kotlin 注解

1. kotlin 定义注解

注解属性在使用时指定,其后不会再变,只能声明为只读属性


annotation class Annotation1(val name: String, val desc: String)

annotation class Annotation2(val field1: Int, val field2: String)


2. kotlin 元注解

  • @Retention : 修饰注解可以保留多长时间 SOURCE, BINARY, RUNTIME
  • @Target : 指定注解可以修饰的程序目标
  • @Repeatable : 可重复修饰的注解

// @Retention(value = AnnotationRetention.SOURCE) // 注解只保留在源代码中,注解会被编译器丢弃
// @Retention(value = AnnotationRetention.BINARY) // 注解将被记录在 class 文件中,JVM无法获取
@Retention(value = AnnotationRetention.RUNTIME) // 注解将被记录在 class 文件中,JVM可以获取,程序可以通过反射获取。默认值
annotation class Annotation3()

// 注解只能修饰类
@Target(AnnotationTarget.CLASS)
annotation class Annotation4()

// 注解只能修饰注解
@Target(AnnotationTarget.ANNOTATION_CLASS)
annotation class Annotation5()

// 注解只能修饰函数或方法,不含构造方法
@Target(AnnotationTarget.FUNCTION)
annotation class Annotation6()

// 注解只能修饰构造方法
@Target(AnnotationTarget.CONSTRUCTOR)
annotation class Annotation7()

// 注解只能修饰属性
@Target(AnnotationTarget.PROPERTY)
annotation class Annotation8()

// 注解只能修饰字段,包括属性的支持字段
@Target(AnnotationTarget.FIELD)
annotation class Annotation9()

// 注解只能修饰局部变量
@Target(AnnotationTarget.LOCAL_VARIABLE)
annotation class Annotation10()

// 注解只能修饰函数或构造函数的值参数
@Target(AnnotationTarget.VALUE_PARAMETER)
annotation class Annotation11()

// 注解只能修饰表达式
@Retention(AnnotationRetention.SOURCE)
@Target(AnnotationTarget.EXPRESSION)
annotation class Annotation12()

// 注解只能修饰类型别名
@Target(AnnotationTarget.TYPEALIAS)
annotation class Annotation13()

// 指定多个可修饰的程序目标
@Target(allowedTargets = [AnnotationTarget.CLASS, AnnotationTarget.FUNCTION])
annotation class Annotation14()

// 2.3 可重复修饰的注解
@Target(AnnotationTarget.FUNCTION)
@Retention(AnnotationRetention.SOURCE)
@Repeatable
annotation class RepeatAnnotation(val field1: Int, val field2: String)

class DemoAnnotation {
    @RepeatAnnotation(1, "2")
    @RepeatAnnotation(3, "4")
    fun method() {
    }
}


3. kotlin 使用注解


class TestAnnotation {

    @Annotation1(name = "method", desc = "this is a normal method")
    @Annotation2(field1 = 1001, field2 = "test annotation")
    fun method() {
        println("invoke method")
    }
}

fun main() {
    // 获取 TestAnnotation 的方法定义的注解信息
    val annotationList = TestAnnotation::method.annotations
    
    annotationList.forEach { annotation ->
    
        if (annotation is Annotation1) {
        
            println("name: ${annotation.name}, desc: ${annotation.desc}")
            
        } else if (annotation is Annotation2) {
        
            println("field1: ${annotation.field1}, field2: ${annotation.field2}")
            
        }
    }
}


附 Github 源码:

TestAnnotation.kt

  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2021-12-11 15:35:19  更:2021-12-11 15:36:47 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 5:55:55-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码