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(10页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、精品_精品资料_面对对象程序设计( C+) 双语课程教案大纲课程编号: 03874制定单位:信息治理学院执笔人:杨巨成审 核 人:方志军修订时间: 2022 年 8 月 30 日江西财经高校教务处可编辑资料 - - - 欢迎下载精品_精品资料_面对对象程序设计( C+ ) 双语课程教案大纲一、课程总述可编辑资料 - - - 欢迎下载精品_精品资料_课程名称面对对象程序设计(C+) 双语课程代码03874可编辑资料 - - - 欢迎下载精品_精品资料_课程性质专业必修课先修课程C 语言总学时数64(含上机 32 学时)周学时数4(2+2)开课院系信息治理学院任课老师面对对象程序设计(C+ )课程
2、组编写人杨巨成编写时间2022 年 8 月课程负责人方志军大纲主审人方志军使用教材Bjarne StroustrupThe C+ Programming LanguageSpecial Edition Higher Education Press ( 2022 年 7 月出版)(1) 裘宗燕译 C+程序设计(特殊版)机械工业出版社2022年 7 月出版(2) 裘宗燕译 C+语言的设计与演化机械工业出版社2022 年 1可编辑资料 - - - 欢迎下载精品_精品资料_教案参考资料课程教案目的课程教案要求月出版 3 钱能主编 C+程序设计教程清华高校出版社2022 年 9 月出版4 刘宗田译 C+
3、编程思想(第 2 版)机械工业出版社 2022 年 9 月出版 5 郑莉主编 C+语言程序设计 清华高校出版社2022 年 12 月出版The objective of this course is to help the student grasp the basic idea,knowledgeandtechniqueoftheobjectoriented programmingOOP language. After learning the course, the student can solve the practical problems appearedin their work
4、 withthis advanced language and its software technique. The main content of this course is C+ programming language and the kernel characteristics ofthis language are abstract, encapsulation, inheritance, and polymorphism, which can be regarded as the base of the OOP programming.This course is practi
5、cal, which means we should combine the learning and practice. Duringthe 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 withthe C+ language they have learned fromthe co
6、urse.Through this way, the student can deeply understand the C+ languageand can master the compiling, linkingand runningprocedures of the language. In a word, many exercises and practicesare very important for the student to learn and understand the language well.可编辑资料 - - - 欢迎下载精品_精品资料_本课程的重点和难点课程考
7、试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 ofthecourse.Thedifficultiesofthiscoursearetheclass designing,inheritance and polymorphism. Th
8、e student willfeel some trouble insolving the practical problem withthe data abstraction mechanisms especially with the pure virtual functions.The final mark of every student includes three parts: experimentalreportstake 20 percent, large scale homework takes 20 percent, and the final examination ta
9、kes 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教案时数安排课堂讲授试验(上机)22二A tour of C+22三A tour of the standard library22四Functions22五Pointer t
10、o Function, Macros, Namespace22六Classes22七Constructor & Destructor22八Pointers and class supplement22九Operator overloading44十Derived classes44十一Virtual base class22十二virtual functions22十三Templates22十四IO Stream22合计3232可编辑资料 - - - 欢迎下载精品_精品资料_三、单元教案目的、教案重难点和内容设置Chapter 1Overview of the book and OOP【Tea
11、ching 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 student should learn the main characteristics of OOP language. Finally, the student should grasp how to design a C+ progra
12、m 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 OOP(4) Design C+ program in VC+Chapter 2 A tour of C+【Teaching Target】After learning this chapter, the student will
13、 know the history of C+ and what is C+. The student willknow the conventional procedural program and modular program. Then, the student will learn what the data abstraction is in C+ and some examples of how to define class by the OOP language.【Emphases】 What is modular program, how to define data ab
14、straction and its usage.【Main contents】(1) What is C+(2) Procedural programming(3) Modular programming(4) Data abstraction(5) Object-Oriented ProgrammingChapter 3A tour of the standard library【Teaching Target】After learning this chapter, the student will know the principal of standard library and it
15、s 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.可编辑资料 - - - 欢迎下载精品_精品资料_【Emphases】 Grasp some typical standard library functions, such as string, vector, list and map.【Main contents】(1) O
16、utput and input in C+(2) Strings in C+(3) The containers of standard library(4) Algorithms and math of standard library(5) Standard Library FacilitiesChapter 4 Functions【Teaching Target】After learning this chapter,the student will know the declaration and definition of the function, the action scope
17、 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 recursive function as well as the function overloading.【Emphases】 Grasp what is static variables and function overloading and know how to use them.【M
18、ain contents】(1) Function declarations and definitions(2) Inline function(3) Static variables(4) Argument passing in the function(5) Function overloading(6) Default argumentChapter 5 Pointer to Function, Macros, Namespace【Teaching Target】After learning this chapter, the student will know the pointer
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 2022年面向对象程序设计教学大纲 2022 面向 对象 程序设计 教学大纲
![提示](https://www.taowenge.com/images/bang_tan.gif)
限制150内