1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Kotlin】厳密等価演算子(Identity Operator)の不思議な挙動について

Posted at

Kotlinの学習で===を使用した際に、予想外の挙動に遭遇したのでメモ。

以下のように簡単な変数に同じ値を代入し比較したところ、両者は異なるメモリアドレスが割り当てられ厳密等価はfalseになるかと思いきや。。。

main.kt
fun main() {
    val s = "str"
    val t = "str"
    println(s===t)  // true
}

結果はなんとtrueとなった。

じゃあ文字列をいじったらどうなんだと思い、次のようにすると。。。

main.kt
fun main() {
    val s = x + y
    val t = x + y
    println(s === y)  // false
    println("--------")

    val a = "abc".substring(0, 2)
    val b = "abc".substring(0, 2)
    println(a === b)  // false
    println("--------")
}

期待通りの結果に。

GhatGPTに尋ねたところ、「インターン化」と呼ばれる最適化が行われているとのこと。

恐らく簡単な処理だからコンパイラが同じものとして扱っているものと考えられる。
が、状況次第では期待と異なる挙動になる可能性があるので注意が必要そう。

なお開発環境は次の通り
【OS】Mac
【エディタ】Intellij

以上。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?