上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页
摘要: 1.静态成员静态成员独立于类的对象,先于对象的存在而存在。无论创建了类的多少个对象,静态成员都只有一个实例空间。一个静态变量被同一个类的所有对象共享。当改变了其中一个对象的静态变量时,其余对象的静态变量值也相应会有改变,因为他们共享的是在同一个空间中的同一个量。因为静态变量与具体对象无关,所以静态变... 阅读全文
posted @ 2015-08-18 15:33 *飞飞* 阅读(191) 评论(0) 推荐(0)
摘要: 同包不同类的成员不同包中子类的成员不同包非子类的成员public√√√protected√√×默认√××private××× 阅读全文
posted @ 2015-08-18 15:23 *飞飞* 阅读(142) 评论(0) 推荐(0)
摘要: 1.子类class SonClass extends ABC{...}在子类定义后,子类中就可以直接隐式包含父类的成员变量和方法,而不用再写,这就是使用继承的优点。子类包含父类的成员,不是子类和父类共享成员,而是子类和父类中都能各自开辟空间,产生性质相同但又独立的成员变量和方法。1.1子类的构造方法... 阅读全文
posted @ 2015-08-17 16:55 *飞飞* 阅读(307) 评论(0) 推荐(0)
摘要: 1.内部类eg:public class Example{ public static void main(String[] args){ FirstClass fc = new FirstClass(); FirstClass.SecondClass sc = fc.new Seco... 阅读全文
posted @ 2015-08-11 16:21 *飞飞* 阅读(138) 评论(0) 推荐(0)
摘要: 1.常量final int MAX = 100;2.变量 关键字所占位数取值范围boolean8true/falsebyte8-2^7 ~ 2^7-1short16-2^15 ~ 2^15-1int32-2^31 ~ 2^31-1long64-2^63 ~ 2^63-1float323.4*10... 阅读全文
posted @ 2015-08-10 17:50 *飞飞* 阅读(140) 评论(0) 推荐(0)
摘要: 1.安装JDK2.编写 Example.java 程序放到C 盘 public class Example { public static void main(string[] args) { system.out.println("Hello world"); } ... 阅读全文
posted @ 2015-08-06 17:07 *飞飞* 阅读(195) 评论(0) 推荐(0)
摘要: Selenium Grid 支持分布式测试,使测试人员可在分布式环境中进行测试一般而言,在面临以下情况时可考虑使用Selenium Grid :1.测试多个浏览器或单个浏览器多个版本,或测试不同操作系统上各种浏览器2.减少测试套件运行时间Selenium Grid 包含一个Hub 和至少一个 Nod... 阅读全文
posted @ 2015-07-01 16:32 *飞飞* 阅读(887) 评论(0) 推荐(0)
摘要: 1234567891011121314151617importcom.eviware.soapui.support.types.StringToStringMap//Get cookie's value from the project level propertiesString cookie =... 阅读全文
posted @ 2015-06-26 17:55 *飞飞* 阅读(545) 评论(0) 推荐(0)
摘要: 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556importcom.eviware.soapui.support.GroovyUtilsimp... 阅读全文
posted @ 2015-06-26 17:53 *飞飞* 阅读(769) 评论(0) 推荐(0)
摘要: To continue tests executing after failed test step you need disable "Abort on error" option in TestCase options.To control test execution flow you can... 阅读全文
posted @ 2015-06-26 17:51 *飞飞* 阅读(364) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页