2010年3月22日

C#中struct与class的区别

摘要: 一. 类与结构的差别   1.值类型与引用类型   结构是值类型:值类型在堆栈上分配地址,所有的基类型都是结构类型,例如:in t 对应System.int32 结构,string 对应 system.string 结构 ,通过使用结构可以创 建更多的值类型   类是引用类型:引用类型在堆上分配地址   堆栈的执行效率要比堆的执行效率高,可是堆栈的资源有限,不适合处理大的逻辑 复杂的对象。... 阅读全文

posted @ 2010-03-22 23:41 ATAK 阅读(203) 评论(0) 推荐(0) 编辑

LoadRunner函数中文翻译系列之三--Concurrent Group(转帖)

摘要: web_concurrent_start语法:intweb_concurrent_start ([char *ConcurrentGroupName,] NULL);参数:ConcurrentGroupName:可选的,并发组的标识符。NULL:参数列表结束的标记符。返回值整型。返回LR_PASS (0)表示成功,返回LR_FAIL (1)表示失败。说明web_concurrent_star... 阅读全文

posted @ 2010-03-22 13:51 ATAK 阅读(418) 评论(0) 推荐(0) 编辑

LoadRunner函数中文翻译系列之二--Check(转帖)

摘要: web_find 语法: int web_find (const char *StepName, <Attributes and Specifications list>, char *searchstring, LAST); 参数: 1、StepName:步骤名称,在Tree视图中出现。 2、Attributes and Specifications list: 支持的属... 阅读全文

posted @ 2010-03-22 13:49 ATAK 阅读(495) 评论(0) 推荐(0) 编辑

LoadRunner函数中文翻译系列之一--Action(转帖)

摘要: web_url  语法:  Int Web_url(const char *name, const char * url, <Lists of Attributes>, [EXTRARES,<Lists of Resource Attributes>,LAST) 返回值  成功时返回LR_PASS (0),失败时返回 LR_FAIL (1)。 参数:  Name:VuGe... 阅读全文

posted @ 2010-03-22 13:46 ATAK 阅读(851) 评论(0) 推荐(0) 编辑

导航