在kotlin中循环

时间:2018-05-18 08:09:09

标签: android kotlin

我在Kotlin做了一个简单的计算器,但是无法弄清楚为什么这个函数总是返回结果为零我认为我的switch语句中有错误但是无法弄清楚在哪里?

我已经尝试替换else部分中的值,并意识到这是唯一正在执行的部分并且所有其他情况都没有被执行

此外,如果我使用值0来初始化结果,则这是始终作为结果返回的值。

class MainActivity : AppCompatActivity() {
lateinit  var myresult : TextView
lateinit  var val1 : EditText
lateinit var  btn : Button
lateinit var val2 : EditText
lateinit var operation : Spinner



override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    setContentView(R.layout.activity_main)

     myresult = findViewById<TextView>(R.id.txtresult)
     val1 = findViewById<EditText>(R.id.valone)
     val2 = findViewById<EditText>(R.id.valtwo)
     var btn = findViewById<Button>(R.id.button)
     operation = findViewById<Spinner>(R.id.spinner)




    var opType = operation.selectedItem.toString()

    fun calculate() : Int {

        var value1 = Integer.parseInt(val1.text.toString())
        var value2 = val2.text.toString().toInt()
        var result : Int

        when (opType){

            "+" ->{result = value1 + value2
                    return result
                 }
            "-" ->{result = value1 - value2
                return result
            }
            "*" -> {result = value1 * value2
                return result
            }
            "/" -> {result = value1 / value2
                return result
            } else -> result = 0

        }

        return result
    }




    btn.setOnClickListener{

        println(calculate().toString())
        myresult.text = calculate().toString()


    }


}

}

1 个答案:

答案 0 :(得分:4)

它可能返回零,因为当提供未知的opType时它是默认值。您正在onCreate()事件期间设置opType,此时尚未选择operatrion微调器的值。

顺便说一句,你可能应该尽量避免使用&#39; var&#39;尽可能避免线程安全问题&amp;简化测试。我个人会将你的计算函数重写为这样的东西,以便可以从点击按钮的事件中调用它。

fun calculate(opType: String, value1: Int, value2: Int) : Int {
    return when (opType){
        "+" -> value1 + value2
        "-" -> value1 - value2
        "*" -> value1 * value2
        "/" -> value1 / value2
        else -> 0
    }
}