说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 复合开发
1)  comprehensive development
复合开发
1.
Then, the model and advantages by comprehensive development of city greening space and underground space are discussed, and some suggestions are also proposed.
分析国外城市绿地的发展过程及地下空间在其中的作用 ;根据国内城市绿化的规划目标 ,分析因土地紧张而导致的问题及对策 ;引出对城市绿化与地下空间复合开发的模式、优点的探讨,提出一些建议,认为进行城市绿地与地下空间复合开发是我国城市走出绿化用地不足、功能不全困境的重要途径,并在文末给出几个实例。
2)  combined development
复合开发
1.
In this paper, the combined development mode of underground traffic and urban green area is put forward by analyzing the urban green areas and urban traffic problems at present in China.
城市的可持续发展 ,需要解决比较现实的问题是城市交通与城市环境 ,本文通过分析我国目前城市绿地与城市交通问题 ,提出地下交通与城市绿地复合开发的模式 ,认为此举是我国城市解决绿化用地不足、城市交通污染等问题的有效途径。
2.
An investigation on the merts and modes of combined development of urban green area with underground space was carried out and some suggestions were given.
分析国外城市绿化的发展过程及地下空间在其中的作用 ;根据国内城市绿化的规划目标 ,分析因土地紧张而导致的问题及对策 ;引出对城市绿化与地下空间复合开发的模式、优点的探讨 ,并提出一些建议 ,认为进行城市绿地与地下空间复合开发是我国城市走出绿化用地不足、功能不全困境的重要途径 ,在文末给出几个实例。
3.
In this paper,the combined development mode of underground space and shelter is put forward by analyzing the shelter and the disaster prevention and mitigation problems at present in China.
城市可持续发展,需提高城市的综合防护减灾能力,通过分析我国城市避难场所和防护减灾方面存在的问题,提出了将城市避难场所与地下空间进行复合开发,使之成为解决城市地面避难空间不足,合理开发地下空间,提高城市综合防护减灾能力的有效途径。
3)  comprehensive development model
复合开发模式
1.
Based on the above analyzing results, the comprehensive development model is proposed combining urban waterfront district with structure adjustment of waterfront city, and the main contents of the development model are expounded.
在此基础上,提出了将滨水城市空间结构调整与城市滨水区开发相结合的复合开发模式,并阐述了复合开发模式的主要内容。
4)  Method of Compound Development
复合开发方法
1.
The Method of Compound Development in A Large MIS System;
大型MIS系统的复合开发方法
5)  reclaiming [英][ri'kleim]  [美][rɪ'klem]
复垦开发
1.
A study on reclaiming of the wasteland of Guiyang;
贵阳市废弃地复垦开发研究
6)  exploitation and reclaimed
开发复垦
1.
Given an example of Pengzhou,the potential analysis of the exploitation and reclaimed land resource included that investigation,suitability evaluation,classification,economic benefit and foreground.
以四川省彭州市为例,对彭州市待开发复垦的土地进行了潜力分析,包括耕地后备资源的调查、待开发复垦土地的适宜用途评价、潜力分级、经济效益及前景分析。
补充资料: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()中.

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