Skip to content

Commit b40fed2

Browse files
committed
Added times.
1 parent 8542e0e commit b40fed2

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

cpp/cpp0/README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
11
# Introduction to C++
22

3+
These videos give you an overview of C++, specifically with writing classes. The first video is a simple "Hello, World" example. The next two are examples of writing classes. There is some intentional redundancy between the videos to reinforce important concepts.
4+
35
## hello.cpp
46

5-
[Video](https://youtu.be/SpGArm0iCz4) - *Hello, World example*
7+
[Video](https://youtu.be/SpGArm0iCz4) (3:00) - *Hello, World example*
68

79
Example of string type & output in C++.
810

911
## class.cpp
1012

11-
[Video](https://youtu.be/1ou-Jrlua7g)
13+
[Video](https://youtu.be/1ou-Jrlua7g) (9:40)
1214

1315
This file has an example of a class with 2 private attributes and 2 public methods. An example of a constructure with default parameters is included. Note that the methods are defined *outside* the class definition.
1416

1517
## staffmember.cpp
1618

17-
[Video](https://youtu.be/vqPb1pIff8M)
19+
[Video](https://youtu.be/vqPb1pIff8M) (9:23)
1820

1921
Another example of writing a C++ class. Includes examples of an initializer list and declaring object variables & object pointers. We will extend this class in a later module as an inheritance & polymorphism example.

0 commit comments

Comments
 (0)