说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 敏捷开发
1)  agile development
敏捷开发
1.
Research and improvement about X testing model based on agile development;
基于敏捷开发的X测试模型的研究与改进
2.
The Study and Implementation of Agile Development for OEM Based Mode of Refrigerator;
OEM模式下冰箱敏捷开发的研究与实施
3.
Practice and Search of Agile Development and eXtreme Programming in Developing Management Information System
敏捷开发—XP在管理信息系统中实践与研究
2)  Agile software development
敏捷开发
1.
Research and Implementation of Agile Software Development Approach in an ERP System;
敏捷开发方法在ERP系统中的研究与实现
2.
The Agile Software Development is a newly arisen kind of software development in recent year.
敏捷开发方法是近年来新兴的一种软件开发方法。
3.
Agile Software Development is a relatively traditional software development methodologies in terms of light approach,emphasiz-ing the people-centered,as little as possible bound to open personnel,will help developers creativity,improve software quality is also funda-mental.
开发人员必须遵循敏捷开发实践,提高自身水平,游戏软件的开发是进行实践的好方式,本文以五子棋游戏开发为例,给出敏捷开发的一些关键实践,需求的敏捷获取、代码的重构及测试驱动等响应需求变化的敏捷开发方法。
3)  agile method
敏捷开发
1.
Because of the traditional method lacking in adapting requirement variety, this paper analyze the agile method to resolve the frequent requirement variety in the stock exchange system by using the SRP, OCP, DIP, SDP.
通过分析证券交易中遇到的复杂业务快速变动的问题,运用面向对象的设计原则和架构,阐述进行敏捷开发的方案。
2.
eXtreme Programming, is promoted by the father of software development methods, Kent Beck, which is one of the agile methods, which emphasized in communication, simplicity, feedback and courage.
极限编程是敏捷开发中的一种,是软件开发方法学泰斗Kent Beck先生最为推崇的方法之一,他强调交流,简化,反馈和胆识,在测试驱动开发、重构、小型发布等13种经典实践的帮助下,指导软件工程师进行软件系统开发。
4)  agile product development
敏捷化开发
1.
Realization on assembly design system under agile product development;
敏捷化开发环境下产品装配设计系统的实现
5)  agile product development
敏捷化产品开发
1.
Assembly design system in agile product development;
最后,给出了基于项目管理监控和Web服务技术的敏捷化产品开发集成框架,以指导相关企业进行敏捷产品开发,达到降低企业装配设计成本,提高快速响应市场变化和客户的多样化要求的目的。
6)  Agile product development
敏捷产品开发
1.
In agile product development, enterprises adopt advanced design, production and or.
敏捷产品开发以先进的设计、生产和组织方式为工具,着眼于持续改善产品开发过程,采取产品开发和市场投入的速度领先战略,以求获得产品开发的领先优势,代表着新产品开发的变革方向。
补充资料:Pro/E二次开发使用toolkit开发trigger的程序

使用toolkit开发trigger的程序时,往往需要能够连续通过trigger来触发dll中的函数.
我碰到的问题:
   1.配置trigger:
   Name: CimDll
   Event: Create PIV
   Time:  POST
   RequireNO
   DLL:Cim.dll
   Function:PDMTPIVCreatePostOperation
   
  2.源代码:
   int PDMDLLInit()
{
   PTCERROR pdm_status;
   FILE      *g_pfileLog;
   g_pfileLog =fopen("test.dat","w");
   setbuf(g_pfileLog,NULL);
   fprintf(g_pfileLog,"begin test\n");
   pdm_status = PDMTriggerRegister("PDMTPIVCreatePostOperation", PDMTPIVCreatePostOperation);
   if (pdm_status != PDM_SUCCESS)
   {  
    printf("Failed to Register Trigger PIV Create Post.\n");
   }
    return (pdm_status);
}


int PDMTPIVCreatePostOperation(int argc, void **argv)
{
   fprintf(g_pfileLog,"test\n");
   .....
   fprintf(g_pfileLog,"end test\n");
   fclose(g_pfileLog);


}


   结果:以上代码存在的问题:如果我们在第一次checkin到C/S中后,删除test.dat文件,然后再进行checkin时,发现没有再生成test.dat,在函数PDMTPIVCreatePostOperation()中所进行的对文件的操作都无效.
   原因:我们使用trigger触发时,真正起作用的是函数:PDMTPIVCreatePostOperation(),而PDMDLLInit()只是在第一次checkin时起作用,所以在第一次调用PDMTPIVCreatePostOperation()后,我就fclose(g_pfileLog),所以出现了上面的情况.所以注意的是:不要把一些重要的东西放在函数PDMDLLInit()中.

说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条