How to empty a Map object?
I have defined a Map object, using:
Map<Object,Object> mapObj=new HashMap<Object,Object>();
I usemapObj.put(obj,obj) to put some values in to thismapObj, after that, I want to empty thismapObj, that's delete all the value inside, make the mapObj empty. How to do that?

