说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 多元开发主体
1)  multi-developers
多元开发主体
1.
This paper introduces the connotation of implementary urban design for multi-developers.
论述了面向多元开发主体的实施性城市设计的内涵,认为融入型城市设计和独立操作型城市设计都无法解决当前城市设计实施中的问题和矛盾,提出的解决的思路是城市设计的编制由封闭转向开放,城市设计的成果由方案转向控制,城市设计的思维由静态转向动态,城市设计转变为衔接法定规划与开发建设的一种法定文件,最后通过上海南站商务区建设导则项目验证了其可行性。
2)  multi-purpose development
多元开发
1.
The fundamental way of protecting the lakes is to enhance multi-purpose development and promote a combination of management with operation lakes.
保护湖泊的根本出路是多元开发提升功能,在湖泊的管理上应提倡管理与经营相结合。
3)  plural subject
多元主体
1.
The American philosopher Gilbert Margaret puts forward the concept of plural subject and joint commitment,and anatomies the forming process of collectivity particularly.
吉尔伯特从认知主体的角度出发,提出了多元主体(pluralsubject)和共同承诺(jointcommitment)等概念,细致的剖析了集体的形成过程。
4)  multi-subject
多元主体
1.
Public Service Reform in the Perspective Multi-subject Interactive Relationship;
多元主体互动关系视角中的公共服务改革
2.
In view of the principal problems of higher education evaluation in China,the impetuses of China s higher education evaluation are investigated,holding that the mode construction of multi-subjects in higher education evaluation is,therefore,a fundamental way to achieve the scientific and impartial evaluation.
针对当前我国高等教育评价存在的主要问题,对我国高等教育评价的动力来源进行了探讨,认为构建高等教育评价的多元主体模式是提高评价科学性和公正性的根本途径。
3.
Generally speaking, the study on the participation of multi-subject in public crisis management is still lagging behind.
但总体来看,从多元主体参与视角来研究公共危机管理的方式还比较薄弱。
5)  Multi-body
多元主体
1.
And in order to achieve the goal of crisis management,it is necessary to clarify the relationship between the multi-body and rational deployment and integration of resources.
由于危机管理与社会、政治、经济、法律、科技、环境等因素相交叉,这些都要求我们整合各种资源,探索联合多元主体共同治理的途径。
6)  development main body
开发主体
1.
This paper put forward Shaanxi sightseeing agriculture development main body and organization pattern should choose peasants share cooperation, company plus peasant s family share system, company plus cooperation economy organization or company plus cooperation economy organization plus peasant family share system and development business contracting or rent.
陕西观光农业的开发主体暨组织模式可从如下几种模式中进行选择:农户股份合作制模式、"公司+农户"的股份制模式、"公司+合 作经济组织"或"公司+合作经济组织+农户"的股份制模式以及开发商承包或承租农户土地的模式等。
补充资料: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()中.

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