View Single Post
  #12 (permalink)  
Old 12-11-2007, 08:43 AM
Shaolin Shaolin is offline
Member
 
Join Date: Nov 2007
Posts: 37
Shaolin is on a distinguished road
OK so I've been messing around with the code and I this is what I have at the moment:

Code:
ListIterator vIter = vec.listIterator() ; while ( vIter.hasNext() ) { System.out.println( vIter.next() ) ; }
It works, but the output is as follows:

Code:
FT@19821f FT@addbf1
I know that Im printing the vector, not the actual content. How do I print the content ?
Reply With Quote