facebook twitter hatena line email

Android/kotlin/helloworld

提供: 初心者エンジニアの簡易メモ
2017年5月29日 (月) 12:16時点におけるAdmin (トーク | 投稿記録)による版 (helloworld)

移動: 案内検索

helloworld

MainActivity.kt

class MainActivity : AppCompatActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)
        var logic = SampleLogic()
        var str = logic.execLogic();
        // var str : String = logic.execLogic(); // 型指定もできる
        Log.d("test", "Helloworld=" + str);
    }
}

Samplelogic.kt

class SampleLogic {
    fun execLogic(): String {
        return "Helloworld"
    }
}