Kotlin中@JvmOverloads 注解

在Kotlin中@JvmOverloads注解的作用就是:在有默认参数值的方法中使用@JvmOverloads注解,则Kotlin就会暴露多个重载方法。
可能还是云里雾里,直接上代码,代码解释一切:
如果我们再kotlin中写如下代码:

1
2
3
fun f(a: String, b: Int = 0, c: String="abc"){
...
}

相当于在Java中声明

1
2
void f(String a, int b, String c){
}

默认参数没有起到任何作用。

但是如果使用的了@JvmOverloads注解:

1
2
@JvmOverloads fun f(a: String, b: Int=0, c:String="abc"){
}

相当于在Java中声明了3个方法:

1
2
3
void f(String a)
void f(String a, int b)
void f(String a, int b, String c)

是不是很方便,再也不用写那么多重载方法了。

注:该注解也可用在构造方法和静态方法。

1
2
3
4
5
class MyLayout: RelativeLayout {

@JvmOverloads
constructor(context:Context, attributeSet: AttributeSet? = null, defStyleAttr: Int = 0): super(context, attributeSet, defStyleAttr)
}

相当Java中的:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
public class MyLayout extends RelativeLayout {

public MyLayout(Context context) {
this(context, null);
}

public MyLayout(Context context, AttributeSet attrs) {
this(context, attrs, 0);
}

public MyLayout(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
}

乱码三千 – 点滴积累 ,欢迎来到乱码三千技术博客站

0%