C++程序设计

Peking University via Coursera

Go to Course: https://www.coursera.org/learn/cpp-chengxu-sheji

Introduction

### Course Review and Recommendation: C++ Programming by Peking University on Coursera #### Overview If you're looking to dive into the world of C++ programming, the course "C++程序设计" (C++ Programming) offered by Peking University is an excellent choice for both aspiring and existing programmers. Designed to equip students with solid comprehension of C++ syntax and concepts, this course positions you to craft large-scale, maintainable, and extendable programs using Object-Oriented Programming (OOP) methodologies. **Prerequisites:** A solid understanding of the C programming language and basic programming principles is recommended before enrolling in this course. This foundation is essential as the course builds upon the elements of C to introduce the more powerful constructs of C++. #### Course Content and Structure The course is structured into multiple modules that cover a wealth of topics crucial to mastering C++ programming. Here’s a brief overview of what each module offers: 1. **Introduction to C++**: This module serves as a refresher on advanced concepts from C, such as function pointers and dynamic memory allocation, before transitioning into C++ features. 2. **Classes and Objects**: Delving into the core of OOP, learners will explore the significance of classes and objects, including constructors and destructors. 3. **Operator Overloading**: This vital module teaches you how to extend the functionality of standard operators to include user-defined types, making your code more intuitive. 4. **Inheritance and Derived Classes**: You’ll learn the principles of code reuse using inheritance, an essential aspect of OOP that helps maintain an efficient code base. 5. **Polymorphism and Virtual Functions**: This module covers how C++ allows for multiple forms/subtypes through polymorphism, crucial for writing more flexible and reusable code. 6. **File Operations and Templates**: You will gain insight into managing data with files and how to implement generic programming through templates. 7. **Standard Template Library (STL)**: The course introduces STL, showcasing its collection of data structures and algorithms, which saves time by providing ready-to-use templates. 8. **Final Assessment**: The culmination of your learning come in the form of a final assessment based on authentic exam questions from Peking University. 9. **Optional Advanced Topics**: For those wishing to continue their learning journey, advanced topics and the new features of C++11 are presented, allowing students to explore beyond the basics. #### Learning Experience One of the distinguishing aspects of this course is its accessible teaching style, which combines theoretical knowledge with practical programming exercises. The integration of classic instructional videos from previous iterations enhances the overall learning experience, ensuring that students encounter diverse teaching approaches. Moreover, the course emphasizes real-world applications of concepts learned, fostering a deeper understanding of how C++ can solve everyday programming challenges. #### Recommendation I highly recommend "C++程序设计" to anyone eager to elevate their programming skills, particularly those who have a background in C. The structured content, coupled with practical applications and a clear focus on OOP principles, makes this course invaluable. Completing this course will not only enhance your programming proficiency but also lay a solid foundation for future studies in areas such as algorithms and data structures. ### Conclusion In summary, Peking University's C++ Programming course on Coursera offers an enriching blend of theory and practical application suited for programmers looking to enhance their skills in C++. The course's comprehensive curriculum, fantastic instructional quality, and ongoing improvements make it a top choice for learners at any stage of their programming journey. Don't miss this opportunity to unlock your potential in C++ programming!

Syllabus

快来加入我们吧!

在完成了计算导论和C程序设计两门课程之后,你是不是被编写程序中逻辑思维的过程与设计精秒的小程序解决实际生活中的问题所深深吸引?你是不是有时也会为大篇幅的程序设计中查错、复用等问题而纠结?快来加入专项课程的第三门课程《C++程序设计》中来吧,为你撑起“面向对象”的另一片天地!通过这门课程的学习,你将有能力驾驭大规模的程序开发,提升自身的编程素养,并为后续的算法、数据结构等课程的学习奠定坚实的基础!PS:我们这门课程一直处在不断地建设与优化当中,吸取了很多以往课程的经典视频,所以如果你看到视频中出现了不同课程的名字,也不要惊讶哦,因为你正在集百家所长:)

从C走进C++

C++是在C语言的基础上创建的一门功能更为强大的面向对象程序设计语言。在正式开始C++程序设计学习之初,我们首先回顾C语言中的高级内容,包括函数指针、命令行参数、位运算和动态内存分配,并在此基础上对C语言进行扩充,引入了引用、const关键字和常量、内联函数和重载函数、函数缺省参数等内容,为后续的C++程序设计的学习打下基础。面向对象的程序设计更接近于真实世界,它要分析待解决的问题中,有哪些类事物,每类事物都有哪些特点,不同的事物种类之间是什么关系,事物之间如何相互作用。本模块将初步介绍面向对象的程序设计的基本内容,尤其是“类”和“对象”这两个重要概念。PS:我们这门课程一直处在不断地建设与优化当中,吸取了很多以往课程的经典视频,所以如果你看到视频中出现了不同课程的名字,也不要惊讶哦,因为你正在集百家所长:)

类和对象

在对类和对象有了初步的了解后,大家已经知道类是C++中十分重要的概念,它是实现面向对象程序设计的基础。类是所有面向对象的语言的共同特征,所有面向对象的语言都提供了这种类型。本模块将进一步介绍类和对象的相关深入概念与内容,包括用于初始化的构造函数,以及复制构造函数,析构函数等。

运算符重载

如果不做特殊处理的话,C++的“+”“-”“*”“/”等运算符只能用于对基本类型的常量或变量进行运算,不能用于对象之间的运算。我们希望对象之间也能用这些运算符进行运算,例如,复数之间是可以进行四则运算的,两个复数对象相加如果直接用“+”运算符完成,那不是很直观和简洁吗?本模块将介绍利用C++提供的“运算符重载”机制,赋予运算符新的功能,就能解决对象之间运算的问题。

继承与派生

代码重用是提高软件开发效率的重要手段,因此C++对代码重用有很强的支持,继承与派生就是支持代码重用的机制之一。例如,要编写一个学生管理程序,必然要设计一个“学生”类,“学生”类会包含学生共有的姓名、学号等属性,但是中学生、大学生、研究生又有各自不同的属性和方法,如果为每种学生单独编写一个类会造成重复与浪费。本模块将介绍通过继承和派生机制,可以在基类的基础上派生出不同的类,从而达到代码重用的目的。

多态与虚函数

多态是指同一名字的事物可以完成不同的功能,例如有几个相似而不完全相同的对象,有时人们要求在向它们发出同一个消息时,它们的反应各不相同,分别执行不同的操作。在C++中,所谓多态性是指由继承而产生的相关的不同的类,其对象对同一消息会作出不同的响应。多态性是面向对象程序设计的一个重要特征,能有效增加程序的灵活性。

文件操作和模板

计算机中为了便于数据的管理和检索,引入了“文件”的概念。在程序中,要使用一个文件,先要打开,打开后才能读写,读写完后要关闭。本模块将介绍C++流类相应的成员函数来实现文件操作的功能。此外,你还将学习到如何通过编写模板进行泛型程序设计,所谓“泛型”就是算法只要实现一遍,就能适用于多种数据类型。也可以说,泛型程序设计就是大量编写模板、使用模板的程序设计。

标准模板库 STL-1

本模块将介绍C++的标准模板库(Standard Template Library,STL),这是泛型程序设计最成功的应用实例。STL是一些常用数据结构(如链表、可变长数组、排序二叉树)和算法(如排序、查找)的模板的集合。有了STL,你就不必编写大多的、常用的数据结构和算法。即便不想用面向对象的程序设计方法编程,学习STL也是大有裨益的。

标准模板库 STL-2

本模块将继续介绍C++的标准模板库(Standard Template Library,STL),这是泛型程序设计最成功的应用实例。STL是一些常用数据结构(如链表、可变长数组、排序二叉树)和算法(如排序、查找)的模板的集合。有了STL,你就不必编写大多的、常用的数据结构和算法。即便不想用面向对象的程序设计方法编程,学习STL也是大有裨益的。

期末考试

基础Wow~ 恭喜你已顺利完成了C++课程八个模块知识点的学习,在被魔兽世界各种虐心虐神之后,有没有对于C++有着一点高屋建瓴的别样体会啊?快来最后体验一下我们的期末测试吧(这是原汁原味的北京大学该课程试题,没有任何改动)!也希望与大家相聚在专项课程的下一门《算法设计》课程中,有了C和C++两种程序语言的基础,你需要进一步提升自身的算法设计技巧,让程序跑的通,还要跑的妙!

[选学] C++高级主题和C++11新特性

[选学] C++高级主题和C++11新特性: 本模块给大家介绍一些C++程序设计的进阶内容,以及最新C++11标准的部分新特性。该模块内容不属于本课程必须掌握的教学内容,但是通过了解和学习必将为你打开一扇C++学习的新门,继续探索程序设计的各种精妙与美好!

结束语

每一次的结束与分离,都是为了我们下一次更好的相遇。期待与你相会在《算法基础》课程!这次的视频我们来点儿不一样的吧 ^_____^

Overview

北京大学《C++程序设计》这门课将向你讲授C++程序设计有关的概念和语法,使你能够使用C++语言,以面向对象的方法编写可维护性、可扩充性好的,较大规模的程序。我们建议你在开始本课程之前已经熟悉了C语言和基本程设编写。这门课则将带你掌握C++语言中类、对象、运算符重载、继承、多态等面向对象的程序设计方法,以及模板、标准模板库STL等泛型程序设计的机制,体会和领悟面向对象程序设计方法和泛型程序设计方法的优势。

Skills

Reviews

特别感谢老师们。老师们讲得特别清楚,以前没看明白的,现在都听明白了,但是囿于授课形式,内容还是少点啊。

Excellent Lectures! Some hard programming assignments. No TA or instructor around on line. Not too many to discuss in course forum. Overall, not an easy course.

非常有趣的课程,让我这个初学者也能一步一步地入门C++和面向对象编程。\n\n但是作业系统还需要改进,经常会出现一些小问题。有时,自己的程序在本地用VS和在POJ上能顺利通过测试,但提交到Coursera上却会出现Compile Error,且不确定究竟是哪部分报错以及缺少了什么头文件。这个问题很难靠学生在课上的知识解决,非常影响学生的学习热情。希望能改进。

Challenging but highly recommended if you really want to learn something serious about C++.

It's a nice course ,especially made by Peking University and teachers are quite easy and charming ,Itbetter to have more pratical projects about C++.