2008年3月9日星期日

apply one job

apply job of SDET(beyonesoft)

2008/3/10 14:47

压力测试-负载测试

负载测试主要关注系统内部的情况,如容量、可扩展性、功能等。例如,能够存储多少个TB的数据?如果同时调用全部的功能会不会出问题? 压力测试主要关心系统外部的表象。例如,能够同时处理多少人的数据操作?能够坚持多少小时不出问题? 负载过关了,但是压力不一定能够过关。你能够挑100斤,但是不一定能够连续挑一个月

2008年3月6日星期四

海尔芙拉

这种睡莲名为“海尔芙拉”,为微型珍稀品种,花朵一般在午间开放,夜晚闭合

2008年3月5日星期三

Pointer of function

void (*pf) (const string &, const string &);
typedef void (*pf) (const string &, const string &);
pf pf1;
void cmp(const string &, const string &);
pf1 = cmp;
pf1("hello", "hell");

void useBigger(const string &, const string &,
bool(const string &, const string &));

the same as:

void useBigger(const string &, const string &,
bool (*) (const string &, const string &));

2008年3月4日星期二

Format of EXE

Windows use PE format to store exe program

Test only

pre