View Single Post
  #8 (permalink)  
Old 12-11-2007, 07:27 AM
staykovmarin staykovmarin is offline
Senior Member
 
Join Date: Nov 2007
Location: Newport, WA
Posts: 141
staykovmarin is on a distinguished road
Quote:
I tried the following
Good try, but you are printing out the vector, not the item inside it. You need to print out the content of the vector if you want to see any meaningful data. So you need:

Code:
System.out.println(vec.next());
Reply With Quote