Skip to content

Instantly share code, notes, and snippets.

@rail-rate
Created August 20, 2019 13:10
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 rail-rate/92fc9e3680f155eecc2d4c1d1f9bdc73 to your computer and use it in GitHub Desktop.
Save rail-rate/92fc9e3680f155eecc2d4c1d1f9bdc73 to your computer and use it in GitHub Desktop.
コンストラクタ1
fun main(args: Array<String>) {
val a = Test("山田", 20) //ここのカッコに値をセットすると下のコンストラクタに値が入る
a.hello()
}//main
class Test(var name : String = "", var age : Int = 0){ //ここのカッコの中がコンスタラクタ
fun hello(){
println("${name}です。${age}です。HELLO!")
}//hello
}//Test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment