| isEmpty() | ใช้ตรวจสอบว่า hashtable ไม่มีข้อมูลอยู่เลย ใช่หรือไม่ |
|---|
method:isEmpty ();
return type:boolean
content:ใช้ตรวจสอบว่า hashtable ไม่มีข้อมูลอยู่เลย ใช่หรือไม่
example:Hashtable hash = new Hashtable (); if ( hash.isEmpty () ) { System.out.println ( "hashtable is empty" ); }