说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 文化基础课
1)  cultural basic course
文化基础课
1.
With the establishment of‘Study-oriented Society’and the penetration of the idea of‘Lifelong Learning’, the rapid progress in science and technology as well as the development of social economy put forward new requirements not only on personnel qualities but on the cultural basic courses in vocational education.
随着“学习型社会”的建立、“终身学习”观念的深入人心,科学技术的日新月异和社会经济的发展对人才素质提出新要求的同时,也对职业教育中的文化基础课提出了新的要求,要求进一步明确其在职业教育中的地位并更大发挥其教育作用。
2)  cultural basis curriculum
文化基础课程
1.
The function and orientation of cultural basis curriculum has always been the discussion hotspot in vocational education field in China.
文化基础课程的功能和定位一直是我国职教界讨论的热点。
2.
Investigation show that,higher vocational school students are good at holistic cognition of cultural basis curriculum,they pay attention to the enhancement of inner accomplishment and operational abilities,and the combination of high ability with moral integrity has become their rational pursuing objectives.
调查发现,高职生对高职公共文化基础课程的整体认知情况较好,学生偏重内在涵养和动手操作能力的提高,德才兼备已成为高职生的理性追求目标。
3)  computer science basic course
计算机文化基础课程
4)  Basic Computer Lessons
计算机文化基础课
1.
On the Teaching of Basic Computer Lessons in Our College;
论我校计算机文化基础课教学
5)  chemical basic course
化学基础课
6)  cultural basis
文化基础
1.
The Cultural Basis for the Chinese Landscape Gardening;
中国皇家园林艺术的文化基础
2.
For the origination of Chinese medicine, 4 agricultural production is the economic basis; the meteorology , astronomy and calendar is the scientific basis; the establishment of country and cities and consolidation of department functions is the social basis; the ancient characters is the cultural basis and the anatomical analogy is the methodological basis.
农业生产是产生中医的经济基础,气象天文历法是产生中医的科学基础,国家和城池的建立及强化的方位职能是产生中医的社会学基础,古文字是产生中医的文化基础,解剖比附是产生中医的方法学基础。
3.
The decline of TCM efficacy is caused by the fact that Chinese Medicine is divorced from its cultural basis, clinical Chinese Medicine divorced from differential treatment, and Chinese herbal medicines from clinical Ch.
造成中医临床疗效下降的问题在于“三个脱节” ,即中医学与自身文化基础脱节 ,中医临床与辨证论治脱节 ,中药与中医临床脱节。
补充资料:Autocad VBA初级教程 (第二课 编程基础)
 

第二课  编程基础



本课主要任务是对上一课的例程进行详细分析



下面是源码:
Sub c100()
Dim cc(0 To 2) As Double '声明坐标变量
cc(0) = 1000 '定义圆心座标
cc(1) = 1000
cc(2) = 0
For i = 1 To 1000 Step 10 '开始循环
  Call ThisDrawing.ModelSpace.AddCircle(cc, i * 10) '画圆
Next i
End Sub



先看第一行和最后一行:
Sub C100()
……
End Sub
C100是宏的名称,也叫过程名称,当用户执行C100时程序将运行sub 和end sub之间的所有指令。



第二行:
Dim cc(0 To 2) As Double '声明坐标变量
后半段“'声明坐标变量”自动变为绿色字体,它是代码语句的注释,它不会影响程序运行,它的作用是告诉阅读者程序员的想法。对于简单的程序,一般不需要写注释,如果要编写非常复杂的程序,最好要多加注释,越详细越好,对于程序员来说,这是一个好习惯。
电脑真正编译执行的是这条语句:Dim cc(0 To 2) As Double
它的作用就是声明变量。
Dim是一条语句,可以理解为计算机指令。
它的语法:Dim变量名 As 数据类型
本例中变量名为CC,而括号中的0 to 2声明这个CC是一个数组,这个数组有三个元素:CC(0)、CC(1)、CC(2),如果改为CC(1 to 3),则三个元素是CC(1)、CC(2)、CC(3),有了这个数组,就可以把坐标数值放到这个变量之中。
Double是数据类型中的一种。ACAD中一般需要定义坐标时就用这个数据类型。在ACAD中数据类型的有很多,下面两个是比较常用的数据类型,初学者要有所理解。
Long(长整型),其范围从 -2,147,483,648 到 2,147,483,647。
Variant  它是那些没被显式声明为其他类型变量的数据类型,可以理解为一种通用的数据类型,这是最常用的。



下面三条语句
cc(0) = 1000 '定义圆心座标
cc(1) = 1000
cc(2) = 0
它们的作用是给CC变量的每一个元素赋,值其顺序是X、Y、Z坐标。




For i = 1 To 1000 Step 10 '开始循环
……
Next i  '结束循环
这两条语句的作用是循环运行指令,每循环一次,i值要增加10,当i加到 1000时,结束循环。
i也是一个变量,虽然没有声明i变量,程序还是认可的,VB不是C语言,每用一个变量都要声明,不声明就会报错。简单是简单了,这样做也有坏处,如果不小心打错了一个字母,程序不会报错,如果程序很长,那就会出现一些意想不到的错误。
step后面的数值就是每次循环时增加的数值,step后也可以用负值。

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