问题
Here in fun swap I am trying to change the value of a1 with b1, but it shows "val cannot be reassigned compile time error". If I can't change like this, then how is it possible to do?
fun swap(a1: String, b1: String) {
val temp = a1
a1 = b1
b1 = temp
}
Note: This is just a sample to know why I am not able to reassign the local variable as we can do in Java.
回答1:
In Kotlin val declares final, read only, reference - and that is exactly what compiler error is telling you with
Val cannot be reassigned
Once you assign value to val, it cannot be changed. If you want to be able to reassign it you have to declare it as var
In Kotlin method parameters are implicitly declared as final val, so you cannot reassign them just like you could in Java.
But the core error in your code is that you are trying to swap method parameters. Since method parameters are passed by value and not by reference what you want to achieve is impossible in Kotlin (just as well as it is impossible in Java). Even if you would reassign parameters inside method call original variables passed to the method would not change.
回答2:
There are two misunderstandings here:
First, in Kotlin all parameters are final and this cannot be changed. Just as in Java a final reference cannot be changed. So you get an error when trying to reassign a final or val reference.
Second, since you have a copy of a reference to a String, your swap function would have no affect on the caller's original references. Your swap function wouldn't work in Java either.
For example, calling your code does nothing:
val s1 = "howdy"
val s2 = "goodbye"
swap(s1,s2) // Java or Kotlin, doesn't matter
println(s1)
println(s2)
// output:
// howdy
// goodbye
And definitely calling it with literals or expressions does nothing:
swap("happy","day") // what references is it supposed to be swapping?
You can only swap the contents inside of an object for which you hold the same reference as the caller. To make a swap routine, you would do something like:
data class MutablePair(var one: String, var two: String)
fun swap(pair: MutablePair) { // not thread safe
val temp = pair.one
pair.one = pair.two
pair.two = temp
}
Which you could call:
val stringies = MutablePair("howdy", "goodbye")
println("${stringies.one} ${stringies.two}")
swap(MutablePair()
println("${stringies.one} ${stringies.two}")
// output:
// howdy goodbye
// goodbye howdy
回答3:
You cannot change function parameter value, instead create new variables for swapped values:
fun swap(a1: String, b1: String) {
val a1Swapped = b1
val b1Swapped = a1
}
来源:https://stackoverflow.com/questions/44198585/val-cannot-be-reassigned-a-compile-time-error-for-a-local-variable-in-fun-in-kot