web_backend_develope
parent
670bdea55d
commit
e0d09a7374
@ -0,0 +1,22 @@
|
||||
package com.platform.test;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import com.platform.entities.CheckoutEntity;
|
||||
|
||||
public class MapTest {
|
||||
|
||||
@Test
|
||||
public void TestRemove(){
|
||||
Map<String, CheckoutEntity> map = new HashMap<String, CheckoutEntity>();
|
||||
CheckoutEntity t = new CheckoutEntity();
|
||||
t.setId(21);
|
||||
map.put("12", t);
|
||||
CheckoutEntity tmp = map.remove("12");
|
||||
System.out.println(tmp.getId());
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in new issue