摘要: 我想到的主要是从以下4个方面进行考核:1. 需求变更 主要从 需求变更率 和 需求新增率 2个指标进行考核2. 需求文档的规范性 文档的规范性主要从3个方面进行考核, 规范性 @完整性 @清晰性 @正确性 @可追踪性 @可验证性 完备性 (主要看是否包括以下几个需求) @业务类需求 @功能性需求 @性能性需求 @界面需求 @安全性需求 @兼容性需求 关键属性 @需求ID @需求优先级 @需求类别3. 需求评审中发现的bug数 主要考虑需求评审过程中,发现的和业务相关的bug和测试过程中发现的关于需求的bug两方面进行考核.4. 需求培训 主要从对软件需求的覆盖度进行考核,根据需求的优先级进行评 阅读全文
posted @ 2011-04-02 17:19 职场人的思考 阅读(3577) 评论(0) 推荐(0) 编辑
摘要: This week is a litter busy, but stillfinishedthe chapter 5 Methods. this chapter contain 5 sections ,very usefully in program, the contents as following: 阅读全文
posted @ 2011-04-02 17:04 职场人的思考 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 2.3 bug类型 和2.3 bug解决情况,统计方式类似! 阅读全文
posted @ 2011-04-02 16:32 职场人的思考 阅读(961) 评论(0) 推荐(0) 编辑
摘要: Calling methods from within other methods------------------------程序如下:-----------------------------/** File: Combinations.java* -----------------------* This program computes the mathematical combinations function* C(n, k), which is the number of ways of selecting k objects* from a set of n distinct 阅读全文
posted @ 2011-04-02 15:46 职场人的思考 阅读(1227) 评论(1) 推荐(0) 编辑
摘要: package chapter5;import java.util.Scanner;public class Gcd {/** * 计算2个数的最大公约数 */public static void main(String[] args) { int x; int y; int result; System.out.println("please in put the x:"); Scanner input=new Scanner(System.in); x=input.nextInt(); System.out.println("please in put the 阅读全文
posted @ 2011-04-02 15:33 职场人的思考 阅读(784) 评论(0) 推荐(0) 编辑