| Author |
plz explain the o/p??
|
srikanth reddy
Ranch Hand
Joined: Jul 28, 2005
Posts: 252
|
|
import java.util.*; public class Test17{ public static void main(String a[]){ Map m = new Hashtable(10,0.75f); System.out.println(m.size()); } } can nyone explain the o/p please???
|
Thanks & Regards<br /> <br />-Srikanth
|
 |
Joanne Neal
Rancher
Joined: Aug 05, 2005
Posts: 3011
|
|
What output are you expecting ? What output are you getting ? The answer to your question is in the API docs. [ September 02, 2005: Message edited by: Joanne Neal ]
|
Joanne
|
 |
A Kumar
Ranch Hand
Joined: Jul 04, 2004
Posts: 973
|
|
size() Returns the number of key-value mappings in this map. No key-value pairs..so value is 0 Regards
|
 |
 |
|
|
subject: plz explain the o/p??
|
|
|