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

容器深入研究

时间:2016-04-15 11:59:28      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

17.1 完整的容器分类法

技术分享

17.2 填充容器

package net.javabcsx.com.char17;

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

/**
 * Created by Administrator on 2016/4/14.
 */

class StringAddress{
    private String s;
    public StringAddress(String s) {
        this.s = s;
    }

    @Override
    public String toString() {
        return super.toString() + " " + s;
    }
}

public class FillingLists {
    public static void main(String[] args) {
        List<StringAddress> list = new ArrayList<StringAddress>(
                //nCopies将对象拷贝4遍
                Collections.nCopies(4, new StringAddress("Hello")));
        System.out.println(list);
        //复制同一个对象替换容器
        Collections.fill(list, new StringAddress("World"));
        System.out.println(list);
    }
}

一种Generator解决方案

 

容器深入研究

标签:

原文地址:http://www.cnblogs.com/beaconSky/p/5394647.html

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