说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 就业岗位开发
1)  job creation
就业岗位开发
2)  Posting development of community employment
社区就业岗位开发
3)  employment [英][ɪm'plɔɪmənt]  [美][ɪm'plɔɪmənt]
就业岗位
1.
As a new professional,the graduates of social sports are not fully employed in the current severe employment situation.
以郑州市为例,运用问卷调查法和访谈法,得出街道和社区所能提供给社会体育专业人才的就业岗位主要有街道办事处文体干部、街道文体中心人员、社区居委会专职工作者、专职社会体育指导员等职位。
4)  jobs [英][dʒɔb]  [美][dʒɑb]
就业岗位
1.
Second,the solution to it is economic development and increasing jobs.
大学生就业难凸显了四个方面需要研究和解决的课题:一,大学生就业难不能仅仅看作是大学生们的就业问题,应该是包括农民工、下岗职工和无业待岗人员的整体性就业问题,同时也是中国的人口问题;二,发展经济,增加就业岗位是解决问题的治本之策;三,高等教育结构体系必须适应我国现阶段经济发展的需要;四,观念转变与制度创新是解决问题的关键所在。
2.
The Informal-Labor-Sector has made important contribution to solve employment in China So the government should initiate and support actively from the aspects of renewing the concepts,normalizing the law,improving the policy,optimizing the management and services to expand this kind of labor-sector and develop more jobs effectively.
非正规劳动组织就业对解决中国的就业矛盾作出了重要贡献,政府应积极作为,从观念上带头更新、法律上加以规范、政策上注重扶持、服务和管理上进行优化,有效地促进这类组织发展壮大,开发其更多的就业岗位。
5)  Employment posts
就业岗位群
6)  development on the post
岗位开发
补充资料: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()中.

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