摘要: Scrum有3个角色: Product Owner, ScrumMaster, and Scrum Team.Product Owner的职责:确定产品的功能。决定发布的日期和发布内容。为产品的profitability of the product (ROI)负责。根据市场价值确定功能优先级。在30天内调整功能和调整功能优先级。接受或拒绝接受开发团队的工作成果。Product Owner参与Scrum planning。ScrumMaster作为team leader和Product owner紧密地工作在一起,他可以及时地为团队成员提供帮助。他必须:保证团队资源完全可被利用并且全部是高产出 阅读全文
posted @ 2013-04-19 08:33 一天不进步,就是退步 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 原文地址:http://yahaitt.iteye.com/blog/250338js继承有5种实现方式:1、继承第一种方式:对象冒充 function Parent(username){ this.username = username; this.hello = function(){ alert(this.username); } } function Child(username,password){ //通过以下3行实现将Parent的属性和方法追加到Child中,从而实现继承 //第一步:this.method是作为一个临时的属性,并且指向Parent所指向的对象, //第二步:执 阅读全文
posted @ 2013-04-19 07:55 一天不进步,就是退步 阅读(191) 评论(0) 推荐(0) 编辑