Path: csiph.com!usenet.pasdenom.info!aioe.org!newsfeed1.swip.net!newsfeed3.funet.fi!newsfeeds.funet.fi!feeder2.news.elisa.fi!uutiset.elisa.fi!7564ea0f!not-for-mail From: Jukka Lahtinen Newsgroups: comp.lang.java.help Subject: Re: Java Basic Question: Enumeration & Vector Organization: N/A References: X-no-archive: yes Content-Transfer-Encoding: 8bit Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) Cancel-Lock: sha1:3ALWGuddO2eNpZgMLUwHLcI/c00= MIME-Version: 1.0 Content-Type: text/plain Lines: 12 Date: Mon, 10 Feb 2014 16:38:41 +0200 NNTP-Posting-Host: 91.155.88.191 X-Complaints-To: newsmaster@saunalahti.com X-Trace: uutiset.elisa.fi 1392043121 91.155.88.191 (Mon, 10 Feb 2014 16:38:41 EET) NNTP-Posting-Date: Mon, 10 Feb 2014 16:38:41 EET Xref: csiph.com comp.lang.java.help:2896 isuy1 writes: > Hi, I would like some explanation please. > Suppose I have Vector v = new Vector(); You could probably replace it with List v = new LinkedList(); or List v = new ArrayList(); -- Jukka Lahtinen