项目管理 – 如何估算新技术的工作时间?

栏目: 编程工具 · 发布时间: 6年前

内容简介:我最近几个月一直在研究Flex,因为这是我第一次真正做Flex,我最终低估了导致延迟的项目任务.那么在研究新技术时如何估算项目时间?翻译自:https://stackoverflow.com/questions/343652/how-to-estimate-times-when-working-on-a-new-technology

我最近几个月一直在研究Flex,因为这是我第一次真正做Flex,我最终低估了导致延迟的项目任务.那么在研究新技术时如何估算项目时间?

我也建议看一下这个帖子: Does anyone work with Function Points?

功能点是一个“行业标准”(无论这意味着什么),用于估计做某事需要多长时间.在大多数情况下,他们试图绘制出程序的功能,然后你将它们放入这样的算法中:

long GetManHoursForProject()
{
    long   Count_of_Function_Points = GetFunctionPointCountFromAnalyticalPhaseOfSDLC();
    double Average_Complexity       = 1;  // .8 for easy, 1 for normal, 1.2 for hard
    long   Programming_Language     = 130; // for C++ (higher level languages have higher values)


    double Man_Months = Count_of_Function_Points * Programming_Language * Average_Complexity;


    long   Man_Hours = Man_Months * 20 * 8; // 20 days per month, 8 hours per day

    return Man_Hours;
}

我从上面链接的主题讲述了故事板点,这是一个有趣的对话.我会研究这两个主题,找出适合你的主题.

关于功能点和故事板点的好处是它们具有语言倍增器.所有语言都使用相同的思维方式.

如果您正在学习一门新语言,那么您的特定系统的复杂性会更高.

翻译自:https://stackoverflow.com/questions/343652/how-to-estimate-times-when-working-on-a-new-technology


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

C# Primer Plus

C# Primer Plus

Klaus Michelsen / Sams / 2001-12-15 / USD 49.99

C# Primer Plus is a tutorial based introduction to the C# language and important parts of the .Net Framework. Throughout the book the reader will be exposed to proven principles enabling him to write ......一起来看看 《C# Primer Plus》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试