list集合接口
Posted 飞狐爷
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了list集合接口相关的知识,希望对你有一定的参考价值。
import java.util.ArrayList; import java.util.List; class Phone { private String brand; private double price; public Phone(String brand, double price) { this.brand = brand; this.price = price; } @Override public boolean equals(Object obj) { if(this == obj){ return true; } if(obj == null){ return false; } if(! (obj instanceof Phone)){ return false; } Phone phone = (Phone) obj; return this.brand.equals(phone.brand) && this.price==phone.price; } @Override public String toString() { return brand + price; } } public class Hello{ public static void main(String args[]) throws Exception{ List<Phone> list = new ArrayList<Phone>(); list.add(new Phone("红米",399)); list.add(new Phone("黑米",499)); System.out.println(list.get(1)); } }
以上是关于list集合接口的主要内容,如果未能解决你的问题,请参考以下文章