上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 25 下一页
摘要: 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 职场人的思考 阅读(782) 评论(0) 推荐(0) 编辑
摘要: Write a program named "ReverseDigits ", it generates the number that has the same digits in the reverse order, as illustrated by this sample run:---------------------------------ReverseDigits 类---------------------------------package chapter4;import java.util.InputMismatchException;import 阅读全文
posted @ 2011-03-29 18:15 职场人的思考 阅读(656) 评论(1) 推荐(1) 编辑
摘要: this week, reada book named"The Art and Science of Java" , so far ,the following chapter have been finished:Chapter 1 IntroductionChapter 2 Programming by ExampleChapter 3 ExpressionsChapter 4 Statement FormsChapter 1 Introduction include 7small sections, allabout the concepts you may be 阅读全文
posted @ 2011-03-25 17:28 职场人的思考 阅读(190) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2011-03-24 17:26 职场人的思考 阅读(1) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2011-03-24 17:22 职场人的思考 阅读(1) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2011-03-22 14:48 职场人的思考 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 蔡锫微软中国高级架构师 微创软件研发部经理--------------------------------------------------[名人观点]:一.团队组织1.常见问题 • 没有人愿意做测试 • 觉得养不起那么多测试人员 • 开发人员不遵循规范,随心所欲 • 项目经理事必躬亲,分身乏术2.微软团队模型各角色的职责 项目经理 : 编写功能规范,协调各角色关系 产品经理 : 客户联系的桥梁,进行需求分析 用户教育 : 让产品容易使用 发布经理: 保证产品顺利发布二.项目管理1.常见问题 • 无法决定项目所需的资源(人力和预算) • 无法决定项目的进度表 • 无法控制外包项目的进度和质量 阅读全文
posted @ 2011-03-22 14:06 职场人的思考 阅读(618) 评论(0) 推荐(1) 编辑
摘要: 刘振飞: 微软项目经理 开源缺陷管理工具bugfree创始人------------------------------------------------------------------------[名人观点]:微软的研发管理可以从以下几个方面描述:(1) 研发人员分工明确。 主要的三个角色:PM (Program Manager)、Dev (Developer)、 Tester三者分工明确、接口清晰.PM 来定义需求、书写出来每个功能特性 (Feature)的设计文档(Spec),Dev写代码来实现这个 Spec,Tester来测试 Dev做出来的东西是否符合 PM定义的Spec,三个 阅读全文
posted @ 2011-03-22 13:46 职场人的思考 阅读(741) 评论(0) 推荐(0) 编辑
摘要: 刘振飞: 微软项目经理 开源缺陷管理工具bugfree创始人------------------------------------------------------------------------[名人观点]:其实前两篇文章已经陆续谈过微软的 Bug管理指导原则了,这里系统的总结一下:1. 管理层要求所有的 Bug 都要通过 Raid(Product Studio)来跟踪处理。这个看起来很简单的Bug管理工具是每个员工和其他同事有效协作的重要保证2.每个产品都细分模块(Area,SubArea) ,每个模块都有明确的需求定义者(PM) 、开发工程师(Dev)和测试工程师(Tester) 阅读全文
posted @ 2011-03-22 13:26 职场人的思考 阅读(474) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 25 下一页