2015年1月11日
摘要: 在软件开发过程中,无论是在featuretesting还是在finalregressiontesting中,测试策略的好坏在整个质量保证过程中起着至关重要的作用,尤其是在测试资源有限的情况下,影响更为突出。好的测试策略能够更快速的发现软件最有value的缺陷,以便team做出最快的相应。测试策略包括... 阅读全文
posted @ 2015-01-11 21:21 Alvin_Xu 阅读(1154) 评论(0) 推荐(0) 编辑
  2009年3月31日
摘要: 1. Factory 模式 Factory设计模式是主要是为了方便对象的创建而建立的,封装了对对象的创建。这样我们就能通过调用ConcreteFactory中的CreateProduct ()方法创建一个Product 子类对象,而不需要过多的继承。Factory 模式主要适合要创建的对象属于一类,如果要创建的对象不属于一类,那么就要用到AbstractFactory... 阅读全文
posted @ 2009-03-31 18:47 Alvin_Xu 阅读(375) 评论(0) 推荐(0) 编辑
  2009年3月25日
摘要: //test thread #include #include #define MAX_NUM 5 typedef struct TEST_STRUCT// { DWORD i; DWORD dwRandom; }TEST_STRUCT,*TEST_PTR; DWORD WINAPI ThreadProc(LPVOID lpParameter)// { TEST_PTR test... 阅读全文
posted @ 2009-03-25 16:54 Alvin_Xu 阅读(349) 评论(0) 推荐(0) 编辑
  2009年3月23日
摘要: 七种qsort排序方法 一、对int类型数组排序 int num[100]; Sample: int cmp ( const void *a , const void *b ) { return *(int *)a - *(int *)b; } qsort(num,100,sizeof(num[0]),cmp); 二、对char类型数组排序(同int类型) ... 阅读全文
posted @ 2009-03-23 17:17 Alvin_Xu 阅读(271) 评论(0) 推荐(0) 编辑
  2009年3月20日
摘要: Source code: /*---------------------------------------------------------------- // Copyright (C) 2008 ShanDong University At Weihai // FileName:Struct_type.cpp // Function Description:this program ca... 阅读全文
posted @ 2009-03-20 12:30 Alvin_Xu 阅读(2492) 评论(0) 推荐(0) 编辑
  2009年3月19日
摘要: #include #include #include using namespace std; int _tmain(int argc, _TCHAR* argv[]) { int count=0,standard; char ch; string str=""; char filename[20]; cout>standard; ... 阅读全文
posted @ 2009-03-19 14:51 Alvin_Xu 阅读(353) 评论(0) 推荐(0) 编辑
  2009年3月18日
摘要: 解决方案: add #define _HAS_ITERATOR_DEBUGGING 0 after #include "stdafx.h" 阅读全文
posted @ 2009-03-18 17:57 Alvin_Xu 阅读(525) 评论(0) 推荐(0) 编辑