说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 核心技能开发
1)  developing core skills
核心技能开发
2)  Core Technology Development
核心技术开发
3)  key skill
核心技能
1.
The professional key skills is the key to making students reach talent s training objective.
过硬的专业核心技能是使高职学生达到人才培养目标的关键,建立专业核心技能达标考试与仿真实训系统资源库,可以实现专业核心技能取证考试和仿真实训网络自动化。
4)  core skills
核心技能
1.
The reform of curriculum,teaching strategy and educational evaluation should focus on developing individual core skills.
简要介绍了“新职业主义”的教育理念,探讨以“新职业主义”教育理念为指导的护理高职教育的改革方向,提出护理高职教育应重视人的终身发展,以核心技能的培养为中心进行课程、教学法以及教育评价的改革。
2.
The aim is,after analyzing the major s training goal,core skills,supporting courses and training approaches,to find out a rational theoretical and practical teaching system,centering on the masterstroke of training construction craftsmanship,finally to form a practical and pertinent course system of Architectural Engineering.
结合建筑业的现状及岗位需要,对高职高专建筑工程技术专业课程设置体系存在的问题进行探讨,力图通过分析该专业的培养目标、核心技能、支撑课程和培养途径,提出围绕建筑施工技能培养这条主线设计该专业的理论教学体系和实践教学体系,形成以就业为导向,以素质教育为基础、以能力培养为中心的应用性和针对性的高职高专建筑工程技术专业课程体系。
3.
This paper points out that there is a strong correlation between four core skills needed by college students and employees and then the author makes a detailed exploration into the similarities between four core skills expected in college learning and corporate work settings.
文章指出大学生在学习中应获得的四种核心能力与企业工作所需要的核心能力有着直接的内在联系,并较详细地分析了高校教学需培养学生具备的四种核心技能和企业工作取得成功所需要的四种能力是相通的。
5)  Core technical ability
核心技能
1.
Core technical ability course offered is key to high vocational education.
核心技能课程的建设是高职教育的核心问题,文章结合实例对核心技能课程建设的有关问题进行了一些探索。
6)  core skill
核心技能
1.
According to the goal,the article proposes increasing the curriculum conformity dynamics,and breaks traditional thoroughly the educational model,the reform course content and the teaching method,constructs the specialized core skill based on modular curriculum system.
围绕这一培养目标,应加大课程整合力度,彻底打破传统的教学模式,改革教学内容与教学方法,构建基于专业的核心技能的模块化课程体系。
补充资料: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()中.

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