码迷,mamicode.com
首页 > 其他好文 > 详细

集合中存储的是对象么

时间:2015-05-26 21:15:33      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:

集合中存储的是对象么
集合中存储的实际上是对象的引用

import java. util.ArrayList ;
import java. util.List ;

class Apple{
    private String color ;
    private String type ;
    public Apple (String color, String type) {
         super();
         this.color = color;
         this.type = type;
    }
}

public class Main {
    public static void main (String[] args) {
        Apple apple1 = new Apple("red" ,"type1");
        Apple apple2 = new Apple("green" ,"type2");
        List <Apple> apples = new ArrayList<Apple>(4 );
        apples .add( apple1);
        apples .add( apple2);
    }
}

技术分享





集合中存储的是对象么

标签:

原文地址:http://www.cnblogs.com/ZhangJinkun/p/4531636.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!