说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 第二次人才开发
1)  second development of talents
第二次人才开发
2)  the second development
第二次开发
1.
The relationship between the physical training of senior citizen and the second development of human power;
老年体育与人力资源第二次开发
3)  talent development
人才开发
1.
Exploration and analysis on the problem of talent development for Guangxi Beibu Bay Economic Zone
广西北部湾经济区人才开发问题探析
2.
In this paper the author takes the railway survey and design institute as an example,after analysing the current situation and the existing questions,and presents some relevant considerations on strenthening talent development.
基于现实和理论需要,以铁路勘察设计院为案例,分析当前现状、剖析存在问题,结合市场形势和企业发展战略,提出了加强人才开发的相关思考。
3.
Taking Jilin Province Geological Engineering Investigation Institute as an example,this paper analyzes the main problems existing in the talent development in geological exploration units and the causes of generating the problems,and advances some improving countermeasures such as reserving the talents properly,training stuff and constructing good talent environment.
以吉林省地质工程勘察院为例,分析了地勘单位中人才开发存在的主要问题及问题产生的原因,提出了适量储备人才、对员工进行培训、营造良好的人才环境等改进对策。
4)  talents development
人才开发
1.
The Study on Shanghai International Talents Development;
上海市国际化人才开发研究
2.
And the human resource management of the hotel business should transform from the traditional personal management into the modern human resource management, and realize the transformation from the personal management into the talents development, service and management.
新世纪饭店业的发展对其人力资源管理提出了新的挑战,饭店业人力资源管理应从传统的人事管理向现代人力资源管理转变,实现从人事管理向人才开发和服务管理转变。
5)  Human Resource Development
人才开发
1.
Taking the human resource development in the Beibu Gulf Economic Zone for example, this paper proposes a relation model of industrial structure and human resources, and analyzes the influence of industrial and technological structures on human resource structures, as well as industrial chain and human resource development, and industrial convergence and human research development.
以北部湾经济区人才开发为例,提出产业结构与人才的关系模型,分析产业技术结构对人才结构的影响、产业链与人才开发,产业融合趋势与开发人才。
6)  Second flower
第二次开花
补充资料: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()中.

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