Hello.
Can anyone please suggest some good tutorial links where Java Vectors
and Arrays are explained and compared?
I'm a proficient programmer but fairly new to Java. Whilst I understand
arrays I don't fully understand Vectors and when to use them.
Many thanks.
John
IchBin - 06 Jan 2006 14:25 GMT
> Hello.
>
[quoted text clipped - 7 lines]
>
> John
You can Google the GROUPS for Java Vectors vs Arrays
I found a few good conversations out there.
http://groups.google.com/groups?q=Java+Vectors+vs+Arrays&qt_s=Search
http://groups.google.com/group/comp.lang.java.programmer/browse_thread/thread/2d
9d69da4246a6b2/f770dd88c9221e6f?lnk=st&q=Java+Vectors+vs+Arrays&rnum=4#f770dd88c
9221e6f

Signature
Thanks in Advance...
IchBin, Pocono Lake, Pa, USA
http://weconsultants.servebeer.com/JHackerAppManager
__________________________________________________________________________
'If there is one, Knowledge is the "Fountain of Youth"'
-William E. Taylor, Regular Guy (1952-)
Ian Shef - 06 Jan 2006 18:58 GMT
John Bend <john.bend@ITstuff.net.remove> wrote in news:43be6751$1_1
@news.fastfreenet.com:
> Hello.
>
> Can anyone please suggest some good tutorial links where Java Vectors
> and Arrays are explained and compared?
<snip>
Try
http://mindprod.com/jgloss/vector.html

Signature
Ian Shef 805/F6 * These are my personal opinions
Raytheon Company * and not those of my employer.
PO Box 11337 *
Tucson, AZ 85734-1337 *
Oliver Wong - 09 Jan 2006 17:03 GMT
> Hello.
>
[quoted text clipped - 5 lines]
>
> Many thanks.
Some other posters have already given you links, but a one sentence
summary might be that arrays are fixed-length, while Vectors are
variable-lengthed. I'm assuming, by the way, that when you say "Arrays", you
actually mean "arrays", and not, for example, "ArrayList" (the latter also
being variable-length).
- Oliver