说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 景点开发
1)  Attractions Development
景点开发
2)  development prospect
开发前景
1.
Using value and Development prospect of Kochia schrad schrad;
地肤的利用价值及开发前景
2.
Discussion on the development prospects of extracting essential oil from Chinese fir;
浅谈杉木精油的开发前景
3.
The characteristics and development prospect of PTT fiber
PTT纤维的特点及开发前景
3)  exploitation prospect
开发前景
1.
Based on the geological,structural,coal bed and coal bed gas information of Hunchun Basins now,Analyzed the poroslty and permeabilny of coal bed gas reservoir,researched for coal bed gas components and its infiuence factors,Discussed the exploitation prospect of coal bed gas in Hunchun Basins.
在珲春盆地现有地质、构造、煤层、煤层气资料基础上,分析研究煤储层及其围岩的物性特征、煤层气含量、成分特点及其影响因素,探讨分析煤层气开发前景。
2.
This paper gives a brief account of Au, Ag resources in Inner Mongolia Autonomous Region Moreover, it also analyses the genetic type, distribution regularity and prospecting criteria, and forecasts the supply-need situation, assurance degree and exploitation prospect of Au, Ag resources At last some relevant proposals and countermeasures are put forwar
本文着重对内蒙古金、银矿产资源概况作了论述,并对全区金、银矿产资源的成因类型、分布规律及找矿标志以及金、银矿产资源供需形势、保障程度、开发前景作了分析和预测,还提出了建议与对策。
3.
Furthermore,the exploitation prospect in this field is also discussed.
着重对国内外花椒精油的提取方法做了详细的综述,并比较了提取新方法与传统方法的区别,且对花椒精油的开发前景做了讨论。
4)  developing prospect
开发前景
1.
Analysis on developing prospect of inorganic macromolecule flocculation made by fly ash;
用粉煤灰制无机高分子絮凝剂的开发前景分析
2.
Analysis of the developing prospect of the unconfined brine kalium mine in the north hollow of the Lop Nur Region;
罗布泊地区罗北凹地潜卤水钾矿床成因与开发前景
3.
FUNCTIONAL INGREDIENTS OF GRASSHOPPER AND THEIR DEVELOPING PROSPECT;
蝗虫的功能成分与开发前景
5)  prospect [英]['prɔspekt]  [美]['prɑs,pɛkt]
开发前景
1.
Research Advance,Prospect and Breeding Strategy of Cerasus campanulata Maxim;
福建山樱花研究现状、开发前景与育种策略
2.
Present Situation and Development Prospect of Ginger Plant Resources in Xishuangbanna,Yunnan;
西双版纳姜科植物资源的利用现状与开发前景
3.
It also illustrates the prospect of development and the problem to be solved by certain measures as well the main methods.
介绍了稀有微藻葛仙米的生物特征、营养价值及开发前景,并指出了当前制约葛仙米生产、开发存在的问题及采取的措施。
6)  development background
开发背景
补充资料: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()中.

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