Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ArvinRokni
Last active June 6, 2019 23:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ArvinRokni/d6c855ad8d843501438aa387d396df57 to your computer and use it in GitHub Desktop.
Save ArvinRokni/d6c855ad8d843501438aa387d396df57 to your computer and use it in GitHub Desktop.
@JvmOverloads fun example(a:Int=0, b: Double =0.0, c:String="default value"){
println("a=$a , b=$b ,c = $c")
}
data class Sample @JvmOverloads constructor (var name: String? = "", var date: Date? = Date(), var isPrivate: Boolean = false)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment