fun foo(a: Int = 0, b: String = "") { ... }
需要注意的是在Kotlin代码中可以不传递参数,因为有默认值,但是如果在Java中使用Kotlin文件,需要显示的指定参数值。