Package collections.sets

Source Code of collections.sets.CopyOnWriteHashSetUsing

package collections.sets;

import java.util.concurrent.CopyOnWriteArraySet;

/**
* Author: Sergiy Doroshenko
* Date: Sep 17, 2010
* Time: 6:18:22 PM
*/
public class CopyOnWriteHashSetUsing {
    public static void main(String[] args) {
        CopyOnWriteArraySet set = new CopyOnWriteArraySet();
    }
}
TOP

Related Classes of collections.sets.CopyOnWriteHashSetUsing

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.