hello-algo/zh-hant/codes/kotlin/chapter_hashing/built_in_hash.kt
Yudong Jin b2f0d4603d
Many bug fixes and improvements (#1270)
* Add Ruby and Kotlin icons
Add the avatar of @curtishd

* Update README

* Synchronize zh-hant and zh versions.

* Translate the pythontutor blocks to traditional Chinese

* Fix en/mkdocs.yml

* Update the landing page of the en version.

* Fix the Dockerfile

* Refine the en landingpage

* Fix en landing page

* Reset the README.md
2024-04-11 20:18:19 +08:00

36 lines
No EOL
895 B
Kotlin

/**
* File: built_in_hash.kt
* Created Time: 2024-01-25
* Author: curtishd (1023632660@qq.com)
*/
package chapter_hashing
import utils.ListNode
/* Driver Code */
fun main() {
val num = 3
val hashNum = num.hashCode()
println("整數 $num 的雜湊值為 $hashNum")
val bol = true
val hashBol = bol.hashCode()
println("布林量 $bol 的雜湊值為 $hashBol")
val dec = 3.14159
val hashDec = dec.hashCode()
println("小數 $dec 的雜湊值為 $hashDec")
val str = "Hello 演算法"
val hashStr = str.hashCode()
println("字串 $str 的雜湊值為 $hashStr")
val arr = arrayOf<Any>(12836, "小哈")
val hashTup = arr.contentHashCode()
println("陣列 ${arr.contentToString()} 的雜湊值為 ${hashTup}")
val obj = ListNode(0)
val hashObj = obj.hashCode()
println("節點物件 $obj 的雜湊值為 $hashObj")
}