4.24

  1. 在 Android Studio 中打开起始代码。
  2. 打开 com.example.inventory 基础软件包下的 data 软件包。
  3. 在 data 软件包内,打开 Item Kotlin 类,该类表示应用中的数据库实体。
 
// No need to copy over, this is part of the starter code
class Item(
    val id: Int,
    val name: String,
    val price: Double,
    val quantity: Int
)
posted @ 2024-06-19 22:30  混沌武士丞  阅读(3)  评论(0编辑  收藏  举报