摘要: Kotlin Data Classes 快速上手 引言 在日常开发中,我们常常需要创建一些只用来保存数据的类。问题是,这样的类往往需要写一堆模板化的方法:equals()、hashCode()、toString()……每次都重复,既枯燥又容易出错。 // 手动实现所有方法 class User(val id: Int, val name: Stri 阅读全文
posted @ 2025-08-14 17:30 VirboxProtector 阅读(89) 评论(0) 推荐(0)