Jmeter是一款优秀的开源测试工具使用java开发的,开源免费的,测试工具,主要用来做功能测试和性能测试(压力测试/负载测试)对于HTTP协议的理解可以有效促进Jmeter的学习。Jmeter是一款压力测试工具。ThreadGroup:number of threads:线程数,可以用来模拟用户数...
分类:
其他好文 时间:
2015-08-12 18:26:33
阅读次数:
109
对象
JS中的所有事物都是对象:字符串,数值,数组,函数...正所谓万物皆对象.
JS中,可以将对象分为”内部对象”,”宿主对象”和”自定义对象”三种.
1,内部对象
js中的内部对象包括Array、Boolean、Date、Function、Global、Math、Number、Object、RegExp、String以及各种错误类对象,包括Error、EvalError、Rang...
分类:
Web程序 时间:
2015-08-12 17:01:05
阅读次数:
181
点击此处即可传送到hdu 1711 **Number Sequence**
Problem Description
Given two sequences of numbers : a[1], a[2], ...... , a[N], and b[1], b[2], ...... , b[M] (1 <= M <= 10000, 1 <= N <= 10000...
分类:
其他好文 时间:
2015-08-12 16:51:40
阅读次数:
99
使用起来很方便:1. Implement any number of event handling methods in the subscriber: public void onEvent(AnyEventType event) {} 2. Register subscribers: event...
分类:
其他好文 时间:
2015-08-12 16:40:27
阅读次数:
115
JSON(JavaScript Object Natation)是一种轻量级的数据交换格式,非常适合于服务器于JavaScript的交互。JSON是基于纯文本的数据格式。可以用JSON传输一个简单的String,Number,Boolean,也可以传输一个数组,或一个复杂的Object。除了字符,\...
分类:
Web程序 时间:
2015-08-12 14:37:23
阅读次数:
149
1 //数字保留两位小数2 $n = sprintf("%1.2f", $n);3 //方法二4 $n = number_format($n, 2, '.', '');5 6 //UTF8转GBK7 iconv("UTF-8", "GBK", $v); iconv("GBK","UTF-8",$v....
分类:
Web程序 时间:
2015-08-12 13:03:02
阅读次数:
88
Problem 1853 Number Deletion
Accept: 80 Submit: 239
Time Limit: 1000 mSec Memory Limit : 32768 KB
Problem Description
Given you one n-digital positive integer a,After removing any of ...
分类:
其他好文 时间:
2015-08-12 09:00:14
阅读次数:
157
233 Number of Digit One这道题是递归算法class Solution: # @param {integer} n # @return {integer} def countDigitOne(self, n): if n <= 0: ...
分类:
其他好文 时间:
2015-08-12 06:42:49
阅读次数:
114
Scrambled Polygon
Time Limit: 1000MS
Memory Limit: 30000K
Total Submissions: 7568
Accepted: 3604
Description
A closed polygon is a figure bounded by a finite number...
分类:
其他好文 时间:
2015-08-12 01:25:19
阅读次数:
125