Vectors vs Arrays

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • John Bend

    #1

    Vectors vs Arrays

    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

    #2
    Re: Vectors vs Arrays

    John Bend wrote:[color=blue]
    > 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[/color]
    You can Google the GROUPS for Java Vectors vs Arrays

    I found a few good conversations out there.



    --


    Thanks in Advance...
    IchBin, Pocono Lake, Pa, USA

    _______________ _______________ _______________ _______________ ______________

    'If there is one, Knowledge is the "Fountain of Youth"'
    -William E. Taylor, Regular Guy (1952-)

    Comment

    • Ian Shef

      #3
      Re: Vectors vs Arrays

      John Bend <john.bend@ITst uff.net.remove> wrote in news:43be6751$1 _1
      @news.fastfreen et.com:
      [color=blue]
      > Hello.
      >
      > Can anyone please suggest some good tutorial links where Java Vectors
      > and Arrays are explained and compared?[/color]
      <snip>

      Try



      --
      Ian Shef 805/F6 * These are my personal opinions
      Raytheon Company * and not those of my employer.
      PO Box 11337 *
      Tucson, AZ 85734-1337 *

      Comment

      • Oliver Wong

        #4
        Re: Vectors vs Arrays


        "John Bend" <john.bend@ITst uff.net.remove> wrote in message
        news:43be6751$1 _1@news.fastfre enet.com...[color=blue]
        > 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.[/color]

        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


        Comment

        Working...