We want to connect the people who have knowledge to the people who need it, to bring together people with different perspectives so they can understand each other better, and to empower everyone to share their knowledge.
import java.util.* import kotlin.collections.ArrayList import kotlin.collections.HashMap data class Product( val id: Int = 0, val name: String ) data class Category ( val id: Int = 0, val name: String, val products: MutableList<Product> ) fun Category.addProduct(product: Product) { this.products.add(product); } fun main() { val categoryMap = HashMap<Int, Category>() categoryMap[1] = Category( 1, "category1", ArrayList() ) categoryMap.getValue(1).addProduct( Product( 1, "product1" ) ) val scanner = Scanner(System.`in`) while (true) { print("nhap categoryId: ") val categoryId = scanner.nextInt() val category = categoryMap[categoryId] if (category != null) { println(category) } } }
2.2K Point(s)
1.2K Point(s)
313 Point(s)
178 Point(s)
138 Point(s)
Input your email to receive reset password link, or if you remember your password, you can click