0023 | Collections Framework

Tuesday, June 24th, 2008 Posted in Java | No Comments »

ไม่มีอะไรครับ เอา code มาเก็บไว้เฉยๆ 555 กลับมาอ่านอีกทีคงลืมแล้วแหงๆ ว่ามันไว้ทำอะไร import java.util.*; class Product implements Comparable { public int id; public String name; public int qty; public double price; public Product(int id, String name, int qty, double price) { this.id = id; this.name = name; this.qty = qty; this.price = price; } public String toString() { return this.id + ...

Tags: , ,