01 What Are Collections and Why Use Them : The Array Problem
Product.java
public class Product {
private final String name;
private final int weight;
public Product(String name, int weight) {
super();
this.name = name;
this.weight = weight;
}
publi...
原创
2019-04-16 09:52:22 ·
112 阅读 ·
0 评论