append contents of one vector to another?

Hi

I have a vector called temp which has an id, name, description, year

I have a vector called cVector which has an id, name, description, year

what is the least complex way of handling this situation if I would like to append temp to cVector?

Any advice would be appreciated, it seems my best efforts are only inserting temp into an index in cVector and the like... there must logically be a way.

[428 byte] By [occams_razora] at [2007-10-3 6:21:51]
# 1
I'm not sure if I understand you well. Does the following help:cVector.addAll(temp);
jfbrierea at 2007-7-15 1:07:14 > top of Java-index,Java Essentials,New To Java...
# 2
ahhh thanks I thought I was going batty... it was still inside the far reaches of a while loop... logic error...thanks and sorry if that was a simple one...
occams_razora at 2007-7-15 1:07:14 > top of Java-index,Java Essentials,New To Java...