说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 开发概况
1)  Exploitation Outline
开发概况
2)  general situation of exploitation and utilization
开发利用概况
3)  general situation of development
发展概况
1.
This paper briefly introduces the technology of second phase of 1 million tpa vacuum salt making plant of CNSIC Jintan Company-single stage MVR technology for salt making,and its general situation of development and superiority.
简要介绍了中盐金坛公司二期年产100万吨真空制盐工程技术——单级机械热压缩制盐技术,以及该技术的发展概况和优越性。
4)  development survey
发展概况
1.
The paper has analyzed the calligraphy literature record in all previous bibliography from"HanshuYiwenzhi (汉书·艺文志)"to"Sikuquanshuzongmu (四库全书总目)", we outlined the calligraphy literature development survey and tried hard to reveal its historical reason.
论文分析了从《汉书·艺文志》到《四库全书总目》历代目录学著作对书学著作的著录情况,勾勒出我国古代书学的发展概况,并力图揭示其历史原因。
2.
The varieties of the biomass energy, the technologies for producing all kinds of biomass energy , development survey at home and abroad and the existence problems are discussed in this paper.
本文论述了生物质能源的种类、以及生产各种生物质能源的相应技术及其国内外发展概况和存在问题。
3.
The development surveys of structural adhesive and main achievements in our national aerospace projects are introduced.
主要阐述了结构胶黏剂的发展概况及我国在宇航用结构胶黏剂方面的开发历程和主要成就。
5)  development [英][dɪ'veləpmənt]  [美][dɪ'vɛləpmənt]
发展概况
1.
The developments and trends of world s wind energy & it s blades materials;
世界风能及其叶片材料发展概况与趋势
2.
A Survey Of University Library Development In Japan——From Its Establishment to 70s;
日本大学图书馆发展概况——从创立到七十年代
6)  development situation
发展概况
1.
Worldwide development situation of titania produced by chlorination process and technical and economic evaluation;
国内外氯化法钛白发展概况及技术经济评价
2.
Analyzed its four characteristic,the development situation and direction is sumarrized.
从一个铝合金特种铸造工程项目的设计谈起,分析该项目的四个特色,论述了我国压铸工业的发展概况、在世界压铸界的地位以及我国压铸工业的发展方向。
3.
The paper elaborates the development situation of microbial fertilizer at home and abroad,introduces the main types,resources and application effect,discusses the action mechanism of microbial fertilizer and forecasts the development prospect of microbial fertilizer.
为使相关研究者更深入地了解和应用有良好前景的微生物肥料,对国内外微生物肥料的发展概况进行了综述,介绍了微生物肥料的主要类型、资源及其应用效果,探讨了微生物肥料的作用机理,并展望了微生物肥料的发展前景。
补充资料: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()中.

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