Guest User

Untitled

a guest
May 24th, 2017
299
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 0.27 KB | None | 0 0
  1. // Класс с двумя конструкторами
  2. class Foo {
  3.     constructor(i: Int)
  4.     constructor(s: String)
  5. }
  6.  
  7. // Класс с тремя конструкторами
  8. class Bar() {
  9.     constructor(i: Int) : this()
  10.     constructor(s: String) : this()
  11. }
Add Comment
Please, Sign In to add comment