| remove() | ใช้ลบข้อมูลออกจาก Dictionary |
|---|
method:remove ( object_string_key );
return type:void
content:ใช้ลบข้อมูลออกจาก Dictionary
example:Dictionary dictionary = new Dictionary (); dictionary.put ( "bamboo", "ไม้ไผ่" ); dictionary.put ( "lab", "ห้องปฏิบัติการ" ); dictionary.put ( "code", "รหัส" ); dictionary.remove ( "lab" );