说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 自主开发
1)  self-development
自主开发
1.
We realize that without self-development and self-owned brand then without national auto industry,and can t become auto powerful nation.
论述了自主品牌与发展中国民族汽车工业的认识和相互关系,分析了日、韩、巴西及我国台湾汽车工业发展自 主品牌与民族汽车工业的成功与失败,得出了没有自主开发,自主品牌就不能成就民族汽车工业,不能成为汽车强 国的结论。
2.
This paper discusses the making-decision environment of digesting imported technology and self-development for developing country, and constructs its game theoretic model.
论文着重讨论发展中国家引进技术的消化吸收与自主开发战略的决策环境,建立引进技术的消化吸收与自主开发的博奕论模型。
3.
Applying benchmarking in self-development of passenger cars can not only help corporations work out strategic project and improve performance of pro.
在整车自主开发中应用水平比较法,不仅能够帮助企业制定合理的战略规划、提高产品性能,而且能够克服产品开发过程中存在的盲目性。
2)  independent development
自主开发
1.
Introduced a kind of independent development automatic generation the numerical control turret press machine procedure code CAD/CAM programming system based on CAXA.
介绍了一种自主开发的以CAXA为平台的转塔式数控冲床加工代码自动生成的CAD/CAM的编程系统,并介绍了系统的设计思路,设计原理,绘图图元模块、文字、直线、矩形框、圆的技术处理,数控代码生成等技术内容。
3)  autonomous product development
自主开发
1.
But excessively depending upon technology indraught result in lack in autonomous product development ability.
中国已经成为汽车生产和消费的大国,但过分依赖技术引进,严重缺乏自主开发能力,成为我国汽车产业发展的一个瓶颈问题。
2.
It is a mistake to think that autonomous product development is harmful for absorbing foreign technology, because the underlying factor behind both ways is technological learning.
自主开发或自主创新与开放和引进外国技术看成是对立关系的观点是错误的,因为两者对于中国工业发展的实际意义都必须统一到技术学习上。
4)  Autonomous development
自主开发
1.
The writer put forward the question of the moral curriculum s autonomous development in the middle school on the basis of the theory analyses and the investigation on the construction of the moral.
笔者在有关理论分析与上海市中学德育课程建设的调查基础上,提出了中学德育课程自主开发的必要性问题。
5)  self owned development technique
自主开发技术
6)  independent development of websites
自主开发网站
补充资料: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()中.

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