Avatar
Kotlin版 class Digest() { val str: String init { str = makeString() } private fun makeString(): String { return "hoge" } }