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.在整车自主开发中应用水平比较法,不仅能够帮助企业制定合理的战略规划、提高产品性能,而且能够克服产品开发过程中存在的盲目性。
英文短句/例句
1.They belong to all software is developed independently, the absolute original!本站所有软件是自主开发,绝对原版!
2.Application of Benchmarking Procedure in Self-Development of Passenger Cars;水平比较法在整车自主开发中的应用
3.The Independent Development Design of the Manufacture Platform of the Multimedia Courseware;多媒体课件制作平台的自主开发设计
4.Research & Practice of Case Teaching Based on Self-Development基于自主开发的案例教学研究与实践
5.Developing Small Hydro-power Resource Independently: A New Channel for Sustainable Development in Mountain Areas;自主开发小水电:山区经济可持续发展的新途径
6.Suggestions on Development of China Tyre Industry对增强我国轮胎工业自主开发能力的建议
7.The Study and Practice on Automobile Self-determination-oriented New Product Development Planning;汽车新产品自主开发策划理论研究与实践
8.On the Function of Auto Sci-tech Innovation of Developing Zone;发挥开发区自主科技创新功能的研究
9.On the Development of Self-Directed Teaching Resource for College English;大学英语自主式教学资源库开发初探
10.Multi-channels and Strategies in Developing Learners Abilities to"Learn how to Learn"for Effective and Quality Distance Education;发展自主学习能力 保证开放教育质量
11.Our country enterprise independent innovation tap intellectual resources strategy analyses我国企业自主创新人才开发战略分析
12.AutoCET(Autonomous College English Testing System): Research and Development;“大学英语主观填空自主测试系统”的研究与开发
13.Development and application of independent open Labform experimental platform自主性开放式Labform实验平台的开发与应用
14.Self-Adaptive Practice System for English in Junior High School初中英语自适应性自主练习系统的设计与开发
15.an employer who exploits Italian immigrants in the U.S..在美国开发意大利移民用以自肥的雇主。
16.Currently, the quality problems of software products mainly come from the development process.目前,软件产品的质量问题主要来自开发过程。
17.The Marketing Strategy Study of Chinese Self-owned Brand Car on Developing European Market;中国自主品牌汽车开发欧洲市场营销战略探讨
18.The Development of Control System of Autonomous Underwater Vehicle and the Study on Formation Control;自主水下航行器控制系统开发与编队控制研究
相关短句/例句
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()中.
