摘要: 摘自:http://www.cnblogs.com/TankXiao/p/3154017.html 阅读全文
posted @ 2013-10-12 14:29 云翔紫梦 阅读(243) 评论(0) 推荐(0) 编辑
摘要: 源自:http://www.cnblogs.com/TankXiao/p/2381284.html 阅读全文
posted @ 2013-10-12 14:28 云翔紫梦 阅读(246) 评论(0) 推荐(0) 编辑
摘要: written by Li 1 namespace ConsoleApplication3 2 { 3 class Program 4 { 5 public static void findHuiWen(string s) 6 { 7 string tmp = null; 8 for (int i = 0; i < s.Length; i++) 9 {10 for (int j = s.Length - 1; j > i; j--)11 ... 阅读全文
posted @ 2012-07-02 14:39 云翔紫梦 阅读(922) 评论(0) 推荐(0) 编辑
摘要: 扩展名是bat(在nt/2000/xp/2003下也可以是cmd)的文件就是批处理文件。首先批处理文件是一个文本文件,这个文件的每一行都是一条DOS命令其次,批处理文件是一种简单的程序,可以通过条件语句(if)和流程控制语句(goto)来控制命令运行的流程,在批处理中也可以使用循环语句(for)来循环执行一条命令。批处理的作用简单的说,批处理的作用就是自动的连续执行多条命令。批处理的常用命令:echo、@、call、pause、rem(小技巧:用::代替rem)echo表示显示此命令后的字符echo off表示在此语句后所有运行的命令都不显示命令本身@与echo off相似,但是它是加在每个命 阅读全文
posted @ 2012-06-27 18:25 云翔紫梦 阅读(3965) 评论(0) 推荐(0) 编辑
摘要: RI (Reverse Integration) / FI (Forward Integration)RI :child branch => parent branchFI :parent branch =>child branchFI: This is the process where a given branch is merged with the contents of a Parent branch (for example, you FI SQL/Main to Improvement X). This is done to re-base your codebase 阅读全文
posted @ 2012-06-27 17:59 云翔紫梦 阅读(383) 评论(0) 推荐(0) 编辑
摘要: ZBB - 0 bug 反弹 - zero bug bounceZBB是指在项目中的某一点上,开发活动最终赶上了测试的步伐,当前已经不存在活跃bug。在ZBB之后,bug数量的峰值将显著减小,并且bug数量会持续减少直到产品足够稳定,进而构建出第一个候选发布版。取得ZBB是项目组逐渐接近稳定的候选发布版的明确标志。Every build (for a CTP, RC, etc.) starts with a bunch of improvements and defects. We start troubleshooting them and find bugs. We then start 阅读全文
posted @ 2012-06-27 17:55 云翔紫梦 阅读(1866) 评论(0) 推荐(0) 编辑
摘要: Microsoft uses Tell Mode and Ask Mode to refer to different time periods after the Feature Complete milestone but prior to a release.During Tell Mode the Development team tells the rest of the team which issues are actively being worked on (resolved). In other words, Development is primarily driving 阅读全文
posted @ 2012-06-27 17:52 云翔紫梦 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 做编程题时应该注意的点跟面试官沟通自己对题目的理解确定自己的解题思路完整的函数原型正确的逻辑命名规范对输入函数的检查代码规范做完题后用例子代入检查是否能够运行通过Test case的设计原则功能测试(functionality)性能测试/压力测试(performance/stress)本地化测试(localization/Globalization)安全性测试(Security)可用性测试(Usability)题目1:对含有空格的字符串”I am a girl”进行反转”I ma a lrig”功能测试:(关键字:含有空格,字符串,反转)关于字符串的test cases 输入null ... 阅读全文
posted @ 2012-03-27 17:41 云翔紫梦 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 权限管理涉及的对象:用户 群组 角色 模块需求:用户可以有不同的群组,用户也可以有不同的角色。用户与群组、角色都是多对多的关系。群组与角色是多对多的关系。模块与角色挂钩。要求用户进入系统后,根据其角色显示不同的操作菜单实体表:tbl_User tbl_Group tbl_Role tbl_Module。关系表:rlt_UserGroup rlt_GroupRole rlt_RoleModule思路:1.用户在登录页面输入用户名和密码,如果登录信息无误,继续——2.判断用户所属的群组,一个用户可能对应多个群组,每个群组有对应的功能权限;如果该用户有多个群组,则其拥有的功能权限为这... 阅读全文
posted @ 2010-11-18 15:35 云翔紫梦 阅读(582) 评论(0) 推荐(0) 编辑