欢迎来到淘文阁 - 分享文档赚钱的网站! | 帮助中心 好文档才是您的得力助手!
淘文阁 - 分享文档赚钱的网站
全部分类
  • 研究报告>
  • 管理文献>
  • 标准材料>
  • 技术资料>
  • 教育专区>
  • 应用文书>
  • 生活休闲>
  • 考试试题>
  • pptx模板>
  • 工商注册>
  • 期刊短文>
  • 图片设计>
  • ImageVerifierCode 换一换

    2022年面向对象程序设计教学大纲.docx

    • 资源ID:57897122       资源大小:66.72KB        全文页数:18页
    • 资源格式: DOCX        下载积分:4.3金币
    快捷下载 游客一键下载
    会员登录下载
    微信登录下载
    三方登录下载: 微信开放平台登录   QQ登录  
    二维码
    微信扫一扫登录
    下载资源需要4.3金币
    邮箱/手机:
    温馨提示:
    快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
    如填写123,账号就是123,密码也是123。
    支付方式: 支付宝    微信支付   
    验证码:   换一换

     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    2022年面向对象程序设计教学大纲.docx

    精选学习资料 - - - - - - - - - 面对对象程序设计( C+) 双语 课程教案大纲课程编号: 03874 制定单位:信息治理学院执笔人:杨巨成审 核 人:方志军修订时间: 2022 年 8 月 30 日江西财经高校教务处1 / 9 名师归纳总结 - - - - - - -第 1 页,共 9 页精选学习资料 - - - - - - - - - 面对对象程序设计( C+) 双语课程教案大纲一、课程总述课程名称 课程性质 总学时数 开课院系 编写人 课程负责人 使用教材教案参考资 料面对对象程序设计课程代码03874 (C+)双语 专业必修课先修课程C 语言64(含上机 32 学时)周学时数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年 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 this 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, 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 course. 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 页,共 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 arethe 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 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 standard 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 名师归纳总结 - - - - - - -第 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 student 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 OOP 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 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 library 【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 名师归纳总结 - - - - - - -第 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 Chapter 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 recursive 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 Default argument Chapter 5 Pointer to Function, Macros, Namespace 【Teaching Target】After learning this chapter, the student will know the pointer to function and its difference to pointer function, the macros and its correct use in the program, as well as the definition and use of namespace. Finally, the student will know how to use declarations and directives for namespace in the program. 【Emphases】 Function pointer and namespace. 【Main contents】1 Concept of Pointer to Function, and its use in C+ 2 Macros in C+ 5 / 9 名师归纳总结 - - - - - - -第 5 页,共 9 页精选学习资料 - - - - - - - - - 3 The definition of namespace 4 Using declarations and directives for namespace Chapter 6 Classes 【Teaching Target】After learning this chapter, the student will know the role of class and the definition of class. The student will also know what the object is and its difference to class. 【Emphases】The difference of public members and private members of a class. The threedifferent access control methods. 【Main contents】1 Characteristics of OOP 2 The definition and declaration of Class 3 Accessing Manners 4 Member of class Chapter 7 Constructor & Destructor 【Teaching Target】After learning this chapter, the student will know constructors and destructors ofa class, the combination of class as well as the static members of the class. 【Emphases】How to define class with constructors and destructors. Understanding the mechanism of class combination and static members. 【Main contents】1 Constructor 2 Copy-constructor 3 Destructor 4 Class combination 5 Static members Chapter 8Pointers and Class Supplement 【Teaching Target】After learning this chapter, the student will know the definition and usage of pointers in C+. The student will also know how to use pointers for class and object, the mechanism of constant member functions and default constructors as well as multi-objects as members for a class. 6 / 9 名师归纳总结 - - - - - - -第 6 页,共 9 页精选学习资料 - - - - - - - - - 【Emphases】The usage of pointers in class for constructors and destructors as well as for objects. Understanding the mechanism of class with multi-objects as members in the class. 【Main contents】1 Pointers 2 Pointers in class 3 Objects and Pointers 4 Constant Member Functions 5 Default constructors 6 Multi-Objects as Members Chapter 9Operator overloading 【Teaching Target】This chapter is given to show:1 the characteristics of friend function and how to define and use it. 2 how to define operator overloading functions by member functions and nonmember functions or friend functions. 3 several typical definitions of operator overloading functions. 4 the mechanism of constructing a string class by using operator overloading. 【 Emphases】 The difference of member functions and friend functions. How to define operator loading in case of member functions and nonmember functions. Understanding the definition of a string class by operator overloading. 【Main contents】1 Friend 2 The requirement of operator overloading 3 Operator function 4 How to overload operator 5 Members and friends 6 Conversion operator 7 Overloading for other operators 8 A string class Chapter 10Derived classes 【Teaching Target】This chapter is given to show:1how to define derived class and its member functions in the situation of single-inherit and multi-inherit ;2three typical modes of inherit and their characteristics; 3the mechanism of constructors and destructors in the 7 / 9 名师归纳总结 - - - - - - -第 7 页,共 9 页精选学习资料 - - - - - - - - - derived classes as well as how to avoid ambiguity when using derived classes in the program. 【Emphases】 The difference of public inherit and public inherit. How to define derived classes with constructors and destructors. Understanding the characteristic of derived class with member object in the case of multi-inherit. 【Main contents】1 Introduction 2 Single-inherit 3 Mode of inherit 4 Multi-inherit 5 Constructor and Destructor in derived classes 6 Multi-inherit with member objects 7 Ambiguity Chapter 11Virtual base class 【Teaching Target】This chapter is given to show:how to define virtual base class in the situation of multi-inherit 【Emphases】The difference of static binding and dynamic binding. 【Main contents】1 Virtual base class 2 Rules of assignment in inherit Chapter 12Virtual functions 【Teaching Target】This chapter is given to show: 1 the role of virtual functions and their definitions in the base classes and derived classes as well as its characteristics in the class themechanism of pure virtual functions and how to define abstract class in the program. 【Emphases】How to define virtual functions in the derived classes. Understanding the characteristics of pure virtual functions and abstract class in case of multi-inherit. 【Main contents】1 Virtual functions 2 Important notes 8 / 9 名师归纳总结 - - - - - - -第 8 页,共 9 页精选学习资料 - - - - - - - - - 3 Pure virtual functions and Abstract Classes Chapter 13Templates 【Teaching Target】After learning this chapter, the student will know the role and definition of templates. The student will grasp the function templates and class templates. Finally, the student will know what generic programming in C+ language is. 【Emphases】 The purpose of use of templates, function templates and class templates definitions. 【Main contents】1 Introduction 2 Function Templates 3 Class Templates 4 Class Templates and Non-type Parameters 5 Templates and Inheritance 6 Templates and friends 7 Templates and static Members Chapter 14IO Stream 【Teaching Target】In theses two courses, we will learn how to use string and iostream. Especially learn how to access files on hard drive by using iostream and iofstream. 【Emphases】 The purpose of use of iostream, how to use iostream and iofstream to access the files on hard drives. 【Main contents】1 Introduction to string 2 The usage of string 3 Introduction to iostream 4 The usage of iofstream 5 Accessing files by using iofstream 9 / 9 名师归纳总结 - - - - - - -第 9 页,共 9 页

    注意事项

    本文(2022年面向对象程序设计教学大纲.docx)为本站会员(H****o)主动上传,淘文阁 - 分享文档赚钱的网站仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知淘文阁 - 分享文档赚钱的网站(点击联系客服),我们立即给予删除!

    温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。




    关于淘文阁 - 版权申诉 - 用户使用规则 - 积分规则 - 联系我们

    本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

    工信部备案号:黑ICP备15003705号 © 2020-2023 www.taowenge.com 淘文阁 

    收起
    展开