在java容器中remove方法原理
public class TestColletion {public static void main(String[] args) { Collection a = new ArrayList();a.add(new Name("王","东旭"));a.add(new Name("杨","炳哲"));a.remove(new Name("王","东旭"));}}class N