说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 开发深度
1)  Exploitation Depth
开发深度
2)  deep development
深度开发
1.
Application of high-resolution sequence stratigraphy in deep development of oilfield;
高分辨率层序地层学在油田深度开发中的应用
2.
Research on the Deep Development and Management of Human Resources of University;
高校人力资源深度开发与管理研究
3.
Nutritional value,stabilizing treatment and deep development of rice bran as well as research status and functionality are discussed in detail.
详细论述了米糠的营养性质、稳定化处理和深度开发,以及米糠蛋白的研究现状、乳化性和乳化稳定、起泡性和泡沫稳定性、溶解性等功能性质。
3)  further development
深度开发
1.
The Research on Further Development of Rural Ecotourism in Turpan Region
吐鲁番地区乡村生态旅游深度开发研究
2.
Except the delicious and highly nutritional meat,the other parts,including hair,hide,milk,blood,viscera,bone and horn,are also valuable for further development.
牦牛肉质鲜美 ,营养价值高 ,牦牛的全身 (毛、皮、肉、乳、血、内脏、骨、角 )都有深度开发价值。
3.
According to the vast sand resources, Changli County began development mainly including digging well, supplying electricity, building roads, constructing field guarding foresting, explored five efficient utilization modes and accumulated a lot of experiences for the further development and sustainable utilization of sand resources.
针对广阔沙地资源 ,从 1988年开始昌黎县进行以打井、配电、修路、发展农田防护林网等为主要内容的开发 ,摸索出沙地保护地蔬菜生产、乔木保护沙地果园、沙地节水高效种植、沙地防风林生态建设和畜禽养殖、农副产品加工等 5种高效利用模式 ,为沙地资源深度开发和持续利用探索了路子。
4)  Deep exploitation
深度开发
1.
Deep exploitation strategy of rural experience tourism was put forward from the angle of experience marketing and cyber marketing.
在考察目前我国乡村体验游现状的基础上,分析了其现存的问题与不足,并从体验营销与网络营销的角度提出了乡村体验游深度开发的策略。
2.
Based on this, the paper discusses the focus of the deep exploitation of the western tourism.
并以此为基础,围绕其在未来的深度开发中所应关注的焦点问题展开探讨,本着盘活资源存量,打造精品旅游的思想对西部旅游的发展战略进行了思考,针对其产品、结构等开发重点创造性地提出了一些新的思路和见解。
3.
Based on PPT strategy,Shennongjia tourism deep exploitation should emphasize on such aspects: set up merging three sides into an organic whole;building up tourism image in three fields and three brands;developing tourism in three areas by one style;constructing out space cooperation area for gold triangle and tourism deep exp.
基于PPT战略,神农架的旅游深度开发要搞好三位一体的旅游格局,旅游形象三大层面,旅游产品三大品牌,三区一式旅游开发金三角和旅游深度开发的外部协作区。
5)  further exploitation
深度开发
1.
Further Exploitation of Specilized Tourist Commodities of Xinjiang;
论新疆特色旅游商品的深度开发
2.
Base on analysis of its present development situation and the existent problems,In this paper are studied some measures of further exploitation of the tourist resourses in Moutain Lang.
基于此,文章在深入分析了崀山的开发现状和存在的问题的基础上探讨了深度开发崀山旅游资源的对策,以期能为崀山旅游资源的深度开发提供一定的理论指导。
6)  depth development
深度开发
1.
Research on the depth development of tour resource in Longhui County;
湖南省隆回县旅游资源深度开发研究
2.
The Research of Jinyun Tourist Products Depth Development;
缙云县旅游产品的深度开发研究
3.
For questions existing in the tourist economy and the feedback situation from the tourist market through questionnaire investigation at the county,some tentative plans of the depth development on tourist economy are proposed.
概述了湘西凤凰县旅游资源的特征及旅游业的发展现状,分析了该县旅游经济存在的主要问题,进行了旅游市场问卷调查,并针对凤凰县旅游经济存在的问题和旅游市场问题调查的反馈情况,提出了旅游经济深度开发的一些设想。
补充资料: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()中.

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