[ Enumeration ]

Computer/JAVA 2008. 11. 15. 12:52



java.util 
Interface Enumeration

1. 사용법

------------------------------------------------------------
for ( Enumeration e = v.elements ( ) ; e.hasMoreElements ( ); ) 
{
System.out.println ( e.nextElement ( ) );
}
------------------------------------------------------------
Posted by Triton
,