说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 黑土开发
1)  the opening up of the black earth
黑土开发
2)  land development
土地开发
1.
Applied research into standard of land development and consolidation engineering construction in Hunan province;
湖南省土地开发整理工程建设标准应用研究
2.
Study on land suitability evaluation in land development In Xishao Town of Nanle County;
南乐县西邵乡土地开发项目中的土地适宜性评价研究
3.
On Land Development and Its Influence on the Environment of the Ningbo-Shaoxing Area from the Qin Dynasty to the Northern and Southern Dynasties;
秦汉魏晋南北朝时期宁绍地区土地开发及其对环境的影响
3)  Land exploitation
土地开发
1.
Historical thought on land exploitation in recent 500 years in Jianghan plain;
近500年江汉平原湖区土地开发的历史反思
2.
The results show as the following: due to the effects of artificial factors and the rules of land exploitation,in the science and technology exploitation area, Ziqiu township, Pingyi county, its landscape diversity and landscape fragmentation index are low, evenness index is high, the patch shape index distributes mostly .
土地开发经营股份合作制对山丘区土地的景观格局产生了巨大的影响。
3.
Organization of land exploitation and management was investigated deeply and thoroughly.
对土地开发经营组织进行了深入而细致的调查。
4)  exploiting land
开发土地
5)  water-soil development
水土开发
1.
Systematically collecting and analysing the basic data of hydrogeology, meteorology, water-soil development and social economy, we research the interaction of water and salt of Bostan Lake in natural and artificial conditions in aspect of basins, oasises, lakes and marshes.
系统地收集分析焉耆盆地近50年的水文、气象、水土开发、社会经济等地面数据,从盆地、绿洲区、湖泊湿地等各层次分析博斯腾湖的自然与人为作用的水盐过程。
6)  territorial development
国土开发
1.
Taking the Languedoc-Roussillon Region as an example, this paper summarizes the territorial development and management in France and introduces some characteristics of territorial management in that country.
本文结合法国朗格多克 -鲁西荣大区实例 ,对法国的国土开发整治与管理工作进行了综述 ,并指出了该国国土开发整治管理工作中的几点特色。
2.
The paper describes the current key issues that need to be solved urgently at first, and then points out, it is necessary to strengthen territorial development planning and regulating.
本文在分析我国当前国土开发中急需解决的主要问题的基础上,明确加强国土规划和调控的主要任务。
3.
The Japanese Government consistently adheres to relevant laws, leads the economic development from central to local governments and makes corresponding plans for territorial development in accord with different stages to promote urbanization.
在战后的五十多年间,日本政府始终依照相关法律,由上而下地引导全社会的经济发展,并根据不同阶段制定相应的国土开发计划来推动城市化。
补充资料: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()中.

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