舒适小懒猪

文章
5
资源
1
加入时间
2年10月18天

23种设计模式UML表示形式

一、概况:类关系表示:说明:二.创建型1.Factory Method意图:定义一个用于创建对象的接口,让子类决定实例化哪一个类。Factory Method 使一个类的实例化延迟到其子类。适用性:当一个类不知道它所必须创建的对象的类的时候。 当一个类希望由它

Lists、Sets、Maps和Collections2的使用

1、Lists//ListsSystem.out.println("### Lists ###");ArrayList<String> arrayList = Lists.newArrayList();arrayList.add("A");arrayList.add("B");arrayList.add("C"

Selenium+动态id

1. Selenium+动态id有时候页面元素ID是动态递增的,比如__mbox-btn-1-content, __mbox-btn-3-content, __mbox-btn-5-content             String s1 = "__mbox-btn-";             String s2 = Integer.toString(i);            ...