说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 开发开放
1)  development and opening
开发开放
1.
It is important to analyze and define the superiorities and inferiorities of TBNA so as to further speed up its development and opening.
天津滨海新区作为环渤海地区的区域经济增长极,客观地分析和明确其自身存在的优势与劣势,是进一步加快滨海新区开发开放的基础与前提。
2.
The development and opening of Tianjin Binhai New Area(TBNA) have been brought to the suggestions on 11th Fifth Year Plan of the Chinese Communist Party.
天津滨海新区的开发开放已纳入党的“十一五”规划建议,受到社会广泛关注。
2)  opening and developing
开放开发
1.
To accelerate opening and developing Beibu Bay economic zone of Guangxi, and form a new force of economic development, it is supposed to first coordinate the relations including administrative planning — development, interests — development, harmony — development.
要加快广西北部湾经济区开放开发,形成经济发展新一极,首先应理顺行政区划与发展、利益与发展、和谐与发展三方面关系,从而将区位、港口、资源等优势,转变为经济优势、后发优势,实现经济又好又快发展。
2.
In the new situation of opening and developing Beibu Bay,as an important part of Guangxi higher education,Guangxi TVU is facing opportunities and challenges.
广西广播电视大学拥有"天网、地网、人网"三网合一的系统办学优势,在当前北部湾开发开放的新形势下,作为广西高等教育的一支重要力量,广西电大面临着机遇和挑战,必须转变观念,开拓创新,坚持四个"面向",强化开放教育,优化远程教育,发挥优势,努力开辟一条适合自身发展的办学路子,为提高大众受教育水平,建设全民终身学习的学习型社会,为广西经济建设和北部湾经济开放开发作出应有的贡献。
3)  open development
开放发展
1.
Research into open development path selection of Three Gorges Reservoir area;
三峡库区开放发展的路径选择
4)  open fermentation
开放发酵
5)  opening development platform
开放式开发平台
1.
By analyzing transplant and reuse of data mining platform,an opening development platform for data mining was designed and set up,which was based on CWM and used PMML to describe data mining Model.
在对现有数据挖掘平台移植和复用等方面的需求分析的基础上,提出并建立了以公共数据元模型(CWM)为基础,用预言模型标记语言(PMML)描述挖掘模型的数据挖掘开放式开发平台(DM-ODP),详细论述了该平台逻辑框架、组成模块的功能接口以及平台的执行过程等。
6)  Open de velopment environment(ODE)
开放开发环境
补充资料: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()中.

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