说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 敏捷型JAVA程序开发方法
1)  the Agile JAVA Program Development Method
敏捷型JAVA程序开发方法
2)  agile methodology
敏捷型软件开发方法
1.
An overview of agile methodology and XP;
敏捷型软件开发方法与极限编程概述
3)  agile development method
敏捷开发方法
1.
The feature-driven development (FDD), one of the agile development methods, is introduced.
介绍最常用的敏捷开发方法之一特征驱动方法FDD的核心,描述了FDD整合的软件开发的8个最佳实践以及系统开发的5个过程,分析了FDD方法的关键概念,与极限编程XP和统一过程RUP进行了比较,指出了FDD应用和研究的一些问题。
2.
Agile modeling is an application of agile development methods in the field of modeling.
敏捷开发方法是软件工程领域近年来发展起来的一种软件开发方法,敏捷建模是敏捷开发方法在建模领域的应用。
4)  agile software development methods
敏捷软件开发方法
1.
Research of project evolution metrics based on agile software development methods;
基于敏捷软件开发方法的项目进展度量研究
5)  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在管理信息系统中实践与研究
6)  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种经典实践的帮助下,指导软件工程师进行软件系统开发。
补充资料: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()中.

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