说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 地域开发
1)  regional development
地域开发
1.
here are three theoretical patterns of regional development, namely growing point pattern, point and line pattern and netdeveloping pattern.
从区域开发的理论模式及其评价入手,结合沿边省区经济发展所处的阶段以及国家沿边开放政策的实施,以新疆、云南、黑龙江三省区为例,提出了中近期中国主要沿边省区的外向性地域开发战略。
2)  Areal Research and Development
地域研究与开发
1.
This paper,through document statistics,counts and analyses on the changeful situations of Areal Research and Development from 2000 to 2006,such as the distribution of column,the amount of articles,and the distribution situation of the author s title of technical post,degree,age,unit and the issuing quantity and so on.
用文献计量法对《地域研究与开发》2000~2006年的年载文量,载文的栏目分布,作者的职称、学位、年龄、所在区域和工作单位分布等方面的情况进行了统计分析,揭示了该刊物栏目分布的一些特征、作者的情况和《地域研究与开发》办刊特色及其在地理科学研究中的地位和作用,使读者加深对本刊的了解,也为今后进一步提高该期刊的质量及促进学术交流提供参考。
3)  strategy of the regional development pattern
地域开发模式
4)  tourist regional exploitation
旅游地域开发
5)  regionalization of regional suitable development
地域开发适宜性分区
6)  map about regional economic development
区域经济开发型地图
1.
This paper discusses some basic problems as the concept and division of region, the background and base of study, the theory and method of studying work, the selection of regional type in the pattern of map about regional economic development.
改革开放以来,区域经济获得了前所未有的发展势头,从而带动了区域经济开发型地图的蓬勃发展,形成了我国专题地图园地中的一簇新枝。
补充资料: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()中.

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