|
说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
|
|
1) the development of Mt. Lushan
庐山开发
1.
In modern times (1885 ~ 1937), the development of Mt.
近现代(1885~1937)庐山开发导致牯岭城市化,催生了庐山规模庞大的现代旅游产业。
2) Lushan Mountain
庐山
1.
Evaluation of Lushan Mountain water environmental quality situation by means of two indices.;
两种指数对庐山水体环境质量状况的评价
2.
Type Specimens Materials of Higher Plans in Lushan Mountain and Its Neardy Areas;
庐山及其周边邻近地区高等植物模式标本采集资料
3.
The landscape pattern changes and simulation in Lushan Mountain national Park;
庐山风景名胜区景观格局动态及其模拟
3) Lushan
['lu:ʃæn]
庐山
1.
Discussion About the Plan for Water Resources in the Resort of Lushan;
关于庐山风景名胜区水资源规划的探讨
2.
Grain-size Volume Fractal Features and Its Paleoenvironmental Significance for JL Red Earth Section,Lushan Area;
庐山JL剖面红土粒度体积分形特征及其环境意义
3.
Discussion on Ecological Packaging Strategies of Lushan Yunwu Tea;
庐山云雾茶的生态包装新探
4) Mt.Lushan
庐山
1.
Dissolved aluminum forms in typical udalfs in Mt.Lushan under acid deposition;
酸沉降影响下庐山森林土壤溶液铝形态分异
2.
The application of the shortest path algorithm in the tourist route planning——With Mt.LuShan as an example;
最短路径算法在旅游线路规划中的应用——以庐山为例
3.
Study on the "Circle-Enclave" Spatial Structure of Tourist Market of World Heritage Mt.Lushan;
世界遗产地庐山“圈层飞地”型旅游客源市场空间结构研究
5) Mt. Lushan
庐山
1.
Verifying Research on Prototype of the Peach Garden in Kangwang Valley of Mt. Lushan and Annotations on its Environmental Resources;
庐山康王谷桃花源原型考略及环境资源评注
2.
Dissolved organic carbon in soil solution of paludalfs udalfs in Mt. Lushan forest under impact of acid deposition;
酸沉降影响下庐山森林生态系统土壤溶液溶解有机碳分布
3.
A Study on the Protection and Utilization of Cultural Heritage in Mt. Lushan;
庐山文化遗产的保护与利用研究
6) Mount Lushan
庐山
1.
Commentary on Century Planning Process of Mount Lushan;
庐山百年规划历程述评和问题探讨
2.
Exploitation and Operation Mode of Deep-Level Ecotourism Products on Mount Lushan;
庐山深层次生态旅游产品开发运作模式
3.
Early Exploitation and Architectural Activities in Mount Lushan (1895-1935);
庐山早期开发及相关建筑活动研究(1895-1935)
补充资料: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()中.
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条
|