2022年面向对象程序设计教学大纲.docx
![资源得分’ title=](/images/score_1.gif)
![资源得分’ title=](/images/score_1.gif)
![资源得分’ title=](/images/score_1.gif)
![资源得分’ title=](/images/score_1.gif)
![资源得分’ title=](/images/score_05.gif)
《2022年面向对象程序设计教学大纲.docx》由会员分享,可在线阅读,更多相关《2022年面向对象程序设计教学大纲.docx(18页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、精选学习资料 - - - - - - - - - 面对对象程序设计( C+) 双语 课程教案大纲课程编号: 03874 制定单位:信息治理学院执笔人:杨巨成审 核 人:方志军修订时间: 2022 年 8 月 30 日江西财经高校教务处1 / 9 名师归纳总结 - - - - - - -第 1 页,共 9 页精选学习资料 - - - - - - - - - 面对对象程序设计( C+) 双语课程教案大纲一、课程总述课程名称 课程性质 总学时数 开课院系 编写人 课程负责人 使用教材教案参考资 料面对对象程序设计课程代码03874 (C+)双语 专业必修课先修课程C 语言64(含上机 32 学时)周
2、学时数4(2+2)信息治理学院任课老师面对对象程序设计(C+)课程组杨巨成编写时间2022年 8 月方志军大纲主审人方志军Bjarne StroustrupThe C+ Programming LanguageSpecial Edition Higher Education Press (2003 年 7 月出版)1 裘宗燕译 C+程序设计(特殊版)机械工业出版社 2002年 7 月出版 2 裘宗燕译 C+语言的设计与演化机械工业出版社 2002年 1月出版 3 钱能主编 C+程序设计教程清华高校出版社2005年 9 月出版 4 刘宗田译 C+编程思想(第 2 版)机械工业出版社 2002年
3、9 月出版 5 郑莉主编 C+语言程序设计清华高校出版社2003年 12月出版 课程教案目 的课程教案要 求The objective of this course is to help the student grasp the basic idea, knowledge and technique of the object oriented programmingOOP language. After learning the course, the student can solve the practical problems appearedin their work with t
4、his advanced language and its software technique. The main content of this course is C+ programming language and the kernel characteristics of this language are abstract, encapsulation, inheritance, and polymorphism, which can be regarded as the base of the OOP programming. This course is practical,
5、 which means we should combine the learning and practice. During the course, the conception and the programming technique as well as many typical examples are included. In the experimental course, the student should finish the task assigned to them with the C+ language they have learned from the cou
6、rse. Through this way, the student can deeply understand the C+ language and can master the compiling, linking and runningprocedures of the language. In a word, many exercises and practicesare very important for the student to learn and understand the language well. 2 / 9 名师归纳总结 - - - - - - -第 2 页,共
7、 9 页精选学习资料 - - - - - - - - - 本课程的重 点和难点课程考试The emphasesof this course are to help the student grasp the core idea of the OOP language, which includes the above mentioned four aspects. Therefore, chapters about these aspects the most important parts of the course. The difficulties of this course aret
8、he class designing,inheritance and polymorphism. The student will feel some trouble in solving the practical problem with the data abstraction mechanisms especially with the pure virtual functions. The final mark of every student includes three parts: experimental reportstake 20 percent, large scale
9、 homework takes 20 percent, and the final examination takes 60 percent. The paper examination is closed which consists of full English and the student should answer all the questions with only English. 二、教案时数安排章目教案内容教案时数安排一Overview of the book and OOP 课堂讲授试验(上机)2 2 二A tour of C+ 2 2 三A tour of the s
10、tandard library 2 2 四Functions 2 2 五Pointer to Function, Macros, Namespace 2 2 六Classes 2 2 七Constructor & Destructor 2 2 八Pointers and class supplement 2 2 九Operator overloading 4 4 十Derived classes 4 4 十一Virtual base class 2 2 十二virtual functions 2 2 十三Templates 2 2 十四IO Stream 2 2 合计32 32 3 / 9 名
11、师归纳总结 - - - - - - -第 3 页,共 9 页精选学习资料 - - - - - - - - - 三、单元教案目的、教案重难点和内容设置Chapter 1Overview of the book and OOP 【Teaching Target】After learning this chapter, the student will know the structure of the book, the advice of how to use C+ and some background information about C+. In addition, the studen
12、t should learn the main characteristics of OOP language. Finally, the student should grasp how to design a C+ program in VC+.【Emphases】 Four main characteristics of C+, the difference between C and C+. 【Main contents】1 Contents of this book 2 Material and reference books 3 Main characteristics of OO
13、P 4 Design C+ program in VC+ Chapter 2 A tour of C+ 【Teaching Target】After learning this chapter, the student will know the history of C+ and what is C+. The student will know the conventional procedural program and modular program. Then, the student will learn what the data abstraction is in C+ and
14、 some examples of how to define class by the OOP language.【Emphases】 What is modular program, how to define data abstraction and its usage. 【Main contents】1 What is C+ 2 Procedural programming 3 Modular programming 4 Data abstraction 5 Object-Oriented Programming Chapter 3A tour of the standard libr
15、ary 【Teaching Target】After learning this chapter, the student will know the principal of standard library and its main function. When designing the C+ program, the student can use the standard library in the program, which can help to improve the efficiency of the program. 4 / 9 名师归纳总结 - - - - - - -
16、第 4 页,共 9 页精选学习资料 - - - - - - - - - 【Emphases】 Grasp some typical standard library functions, such as string, vector, list and map. 【Main contents】1 Output and input in C+ 2 Strings in C+ 3 The containers of standard library 4 Algorithms and math of standard library 5 Standard Library Facilities Cha
17、pter 4 Functions 【Teaching Target】After learning this chapter,the student will know the declaration and definition of the function, the action scope of the function and its returning type as well as inline functions and static variables. Finally, the student will know the call of the function, the r
18、ecursive function as well as the function overloading. 【Emphases】 Grasp what is static variables and function overloading and know how to use them. 【Main contents】1 Function declarations and definitions 2 Inline function 3 Static variables 4 Argument passing in the function 5 Function overloading 6
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 2022 面向 对象 程序设计 教学大纲
![提示](https://www.taowenge.com/images/bang_tan.gif)
限制150内