1. Урок 1. 00:03:40
    About the Course
  2. Урок 2. 00:05:01
    Why Learn C++?
  3. Урок 3. 00:02:59
    Modern C++ and the C++ Standard
  4. Урок 4. 00:08:14
    How does all this work?
  5. Урок 5. 00:02:54
    Installation and Setup Overview
  6. Урок 6. 00:09:26
    Installing the C++ Compiler on Windows
  7. Урок 7. 00:03:42
    Installing CodeLite on Windows
  8. Урок 8. 00:20:40
    Configuring CodeLite on Windows
  9. Урок 9. 00:03:45
    Installing the C++ Compiler on Mac OSX
  10. Урок 10. 00:04:28
    Installing CodeLite on Mac OSX
  11. Урок 11. 00:22:46
    Configuring CodeLite on Mac OSX
  12. Урок 12. 00:01:33
    Using the Command-Line interface
  13. Урок 13. 00:08:49
    Installing CodeLite on Ubuntu Linux
  14. Урок 14. 00:19:01
    Configuring CodeLite on Ubuntu Linux
  15. Урок 15. 00:08:07
    Creating a Default CodeLite Project Template (All Versions)
  16. Урок 16. 00:09:44
    Using the Command-Line Interface on Windows
  17. Урок 17. 00:07:50
    Using the Command-Line Interface on Mac OSX
  18. Урок 18. 00:08:56
    Using the Command-Line Interface on Linux (Ubuntu)
  19. Урок 19. 00:03:23
    Using a Web-based C++ Compiler
  20. Урок 20. 00:05:09
    Using the Included Source Code Course Resources
  21. Урок 21. 00:06:59
    Curriculum Overview
  22. Урок 22. 00:01:30
    Overview of the Section Challenge Exercises
  23. Урок 23. 00:01:07
    Overview of the Section Quizzes
  24. Урок 24. 00:00:59
    Section Overview
  25. Урок 25. 00:14:53
    An Overview of the CodeLite Interface
  26. Урок 26. 00:08:24
    Writing our first program
  27. Урок 27. 00:12:34
    Building our first program
  28. Урок 28. 00:09:08
    What are Compiler Errors?
  29. Урок 29. 00:03:52
    What are Compiler Warnings?
  30. Урок 30. 00:04:08
    What are Linker Errors?
  31. Урок 31. 00:00:42
    What are Runtime Errors?
  32. Урок 32. 00:01:50
    What are Logic Errors?
  33. Урок 33. 00:01:22
    Section Challenge
  34. Урок 34. 00:05:10
    Section Challenge - Solution
  35. Урок 35. 00:00:57
    Section Overview
  36. Урок 36. 00:04:22
    Overview of the Structure of a C++ Program
  37. Урок 37. 00:02:12
    #include Preprocessor Directive
  38. Урок 38. 00:07:30
    Comments
  39. Урок 39. 00:03:06
    The main() function
  40. Урок 40. 00:03:57
    Namespaces
  41. Урок 41. 00:20:40
    Basic Input and Output (I/O) using cin and cout
  42. Урок 42. 00:01:11
    Section Overview
  43. Урок 43. 00:03:09
    What is a variable?
  44. Урок 44. 00:14:05
    Declaring and Initializing Variables
  45. Урок 45. 00:03:24
    Global Variables
  46. Урок 46. 00:16:00
    C++ Built-in Primitive Types
  47. Урок 47. 00:06:53
    What is the Size of a Variable (sizeof)
  48. Урок 48. 00:05:04
    What is a Constant?
  49. Урок 49. 00:18:27
    Declaring and Using Constants
  50. Урок 50. 00:01:51
    Section Challenge
  51. Урок 51. 00:03:09
    Section Challenge - Solution
  52. Урок 52. 00:01:08
    Section Overview
  53. Урок 53. 00:04:41
    What is an Array?
  54. Урок 54. 00:02:57
    Declaring and Initializing Arrays
  55. Урок 55. 00:14:14
    Accessing and Modifying Array Elements
  56. Урок 56. 00:03:12
    Multidimensional Arrays
  57. Урок 57. 00:06:27
    Declaring and Initializing Vectors
  58. Урок 58. 00:15:31
    Accessing and Modifying Vector Elements
  59. Урок 59. 00:02:08
    Section Challenge
  60. Урок 60. 00:06:04
    Section Challenge - Solution
  61. Урок 61. 00:02:03
    Section Overview
  62. Урок 62. 00:03:21
    Expressions and Statements
  63. Урок 63. 00:01:59
    Using Operators
  64. Урок 64. 00:12:33
    The Assignment Operator
  65. Урок 65. 00:14:56
    Arithmetic Operators
  66. Урок 66. 00:13:12
    Increment and Decrement Operators
  67. Урок 67. 00:12:57
    Mixed Expressions and Conversions
  68. Урок 68. 00:09:05
    Testing for Equality
  69. Урок 69. 00:04:18
    Relational Operators
  70. Урок 70. 00:15:49
    Logical Operators
  71. Урок 71. 00:02:16
    Compound Assignment Operators
  72. Урок 72. 00:03:49
    Operator Precedence
  73. Урок 73. 00:02:31
    Section Challenge
  74. Урок 74. 00:09:52
    Section Challenge - Solution
  75. Урок 75. 00:03:07
    Section Overview
  76. Урок 76. 00:18:09
    if Statement
  77. Урок 77. 00:05:49
    if else Statement
  78. Урок 78. 00:22:05
    Nested if Statement
  79. Урок 79. 00:20:16
    switch-case Statement
  80. Урок 80. 00:10:38
    Conditional Operator
  81. Урок 81. 00:03:13
    Looping
  82. Урок 82. 00:22:09
    for Loop
  83. Урок 83. 00:15:00
    range-based for Loop
  84. Урок 84. 00:16:40
    while Loop
  85. Урок 85. 00:13:47
    do while Loop
  86. Урок 86. 00:02:34
    continue and break
  87. Урок 87. 00:03:18
    Infinite Loops
  88. Урок 88. 00:19:48
    Nested Loops
  89. Урок 89. 00:06:10
    Section Challenge
  90. Урок 90. 00:14:48
    Section Challenge - Solution Part 1
  91. Урок 91. 00:10:41
    Section Challenge - Solution Part 2
  92. Урок 92. 00:01:55
    Section Overview
  93. Урок 93. 00:02:31
    Character Functions
  94. Урок 94. 00:07:46
    C-Style Strings
  95. Урок 95. 00:13:46
    Working with C-style Strings
  96. Урок 96. 00:15:29
    C++ Strings
  97. Урок 97. 00:16:46
    Working with C++ Strings
  98. Урок 98. 00:06:49
    Section Challenge
  99. Урок 99. 00:13:16
    Section Challenge - Solution
  100. Урок 100. 00:02:32
    Section Overview
  101. Урок 101. 00:18:23
    What is a Function?
  102. Урок 102. 00:17:01
    Function Definition
  103. Урок 103. 00:10:56
    Function Prototypes
  104. Урок 104. 00:14:53
    Function Parameters and the return Statement
  105. Урок 105. 00:13:09
    Default Argument Values
  106. Урок 106. 00:10:51
    Overloading Functions
  107. Урок 107. 00:13:34
    Passing Arrays to Functions
  108. Урок 108. 00:13:24
    Pass by Reference
  109. Урок 109. 00:12:10
    Scope Rules
  110. Урок 110. 00:11:24
    How do Function Calls Work?
  111. Урок 111. 00:01:32
    inline Functions
  112. Урок 112. 00:13:19
    Recursive Functions
  113. Урок 113. 00:02:26
    Section Challenge
  114. Урок 114. 00:16:02
    Section Challenge-Solution
  115. Урок 115. 00:03:15
    Section Overview
  116. Урок 116. 00:02:22
    What is a Pointer?
  117. Урок 117. 00:03:03
    Declaring Pointers
  118. Урок 118. 00:16:34
    Accessing the Pointer Address and Storing Address in a Pointer
  119. Урок 119. 00:13:14
    Dereferencing a Pointer
  120. Урок 120. 00:14:04
    Dynamic Memory Allocation
  121. Урок 121. 00:11:38
    The Relationship Between Arrays and Pointers
  122. Урок 122. 00:15:07
    Pointer Arithmetic
  123. Урок 123. 00:02:35
    Const and Pointers
  124. Урок 124. 00:18:32
    Passing Pointers to Functions
  125. Урок 125. 00:12:12
    Returning a Pointer from a Function
  126. Урок 126. 00:04:11
    Potential Pointer Pitfalls
  127. Урок 127. 00:08:51
    What is a Reference?
  128. Урок 128. 00:04:04
    L-values and R-values
  129. Урок 129. 00:10:27
    Using the CodeLite IDE Debugger
  130. Урок 130. 00:03:32
    Section Recap
  131. Урок 131. 00:04:55
    Section Challenge
  132. Урок 132. 00:09:55
    Section Challenge - Solution
  133. Урок 133. 00:03:14
    Section Overview
  134. Урок 134. 00:09:55
    What is Object-Oriented Programming?
  135. Урок 135. 00:03:24
    What are Classes and Objects?
  136. Урок 136. 00:18:22
    Declaring a Class and Creating Objects
  137. Урок 137. 00:17:42
    Accessing Class Members
  138. Урок 138. 00:07:59
    public and private
  139. Урок 139. 00:20:27
    Implementing Member Methods
  140. Урок 140. 00:10:30
    Constructors and Destructors
  141. Урок 141. 00:11:41
    The Default Constructor
  142. Урок 142. 00:02:51
    Overloading Constructors
  143. Урок 143. 00:11:37
    Constructor Initialization lists
  144. Урок 144. 00:09:02
    Delegating Constructors
  145. Урок 145. 00:08:29
    Constructor Parameters and Default Values
  146. Урок 146. 00:17:50
    Copy Constructor
  147. Урок 147. 00:14:31
    Shallow Copying with the Copy Constructor
  148. Урок 148. 00:08:54
    Deep Copying with the Copy Constructor
  149. Урок 149. 00:17:07
    Move Constructors
  150. Урок 150. 00:02:33
    The 'this' Pointer
  151. Урок 151. 00:11:01
    Using const with Classes
  152. Урок 152. 00:14:24
    Static Class Members
  153. Урок 153. 00:02:19
    Structs vs Classes
  154. Урок 154. 00:03:33
    Friends of a class
  155. Урок 155. 00:12:53
    Section Challenge
  156. Урок 156. 00:11:01
    Section Challenge - Solution
  157. Урок 157. 00:01:35
    Section Overview
  158. Урок 158. 00:17:07
    What is Operator Overloading?
  159. Урок 159. 00:19:04
    Overloading the Assignment Operator (copy)
  160. Урок 160. 00:15:08
    Overloading the Assignment Operator (move)
  161. Урок 161. 00:17:46
    Overloading Operators as Member Functions
  162. Урок 162. 00:14:34
    Overloading Operators as Global Functions
  163. Урок 163. 00:10:47
    Overloading the Stream Insertion and Extraction Operators
  164. Урок 164. 00:13:23
    Section Challenge
  165. Урок 165. 00:13:26
    Section Challenge - Solution 1
  166. Урок 166. 00:07:30
    Section Challenge - Solution 2
  167. Урок 167. 00:01:54
    Section Overview
  168. Урок 168. 00:05:55
    What is Inheritance?
  169. Урок 169. 00:05:23
    Terminology and Notation
  170. Урок 170. 00:04:02
    Inheritance vs. Composition
  171. Урок 171. 00:14:15
    Deriving Classes from Existing Classes
  172. Урок 172. 00:12:00
    Protected Members and Class Access
  173. Урок 173. 00:17:32
    Constructors and Destructors
  174. Урок 174. 00:09:28
    Passing Arguments to Base Class Constructors
  175. Урок 175. 00:16:36
    Copy/Move Constructors and Operator = with Derived Classes
  176. Урок 176. 00:15:51
    Redefining Base Class Methods
  177. Урок 177. 00:01:42
    Multiple Inheritance
  178. Урок 178. 00:19:49
    The Updated Accounts Example
  179. Урок 179. 00:05:03
    Section Challenge
  180. Урок 180. 00:14:32
    Section Challenge - Solution
  181. Урок 181. 00:01:23
    Section Overview
  182. Урок 182. 00:17:39
    What is Polymorphism?
  183. Урок 183. 00:12:39
    Using a Base Class Pointer
  184. Урок 184. 00:05:23
    Virtual Functions
  185. Урок 185. 00:05:14
    Virtual Destructors
  186. Урок 186. 00:07:07
    Using the Override Specifier
  187. Урок 187. 00:01:40
    Using the Final Specifier
  188. Урок 188. 00:07:18
    Using Base Class References
  189. Урок 189. 00:16:28
    Pure Virtual Functions and Abstract Classes
  190. Урок 190. 00:18:06
    Abstract Classes as Interfaces
  191. Урок 191. 00:04:22
    Section Challenge
  192. Урок 192. 00:11:34
    Section Challenge - Solution Part 1
  193. Урок 193. 00:10:47
    Section Challenge - Solution Part 2
  194. Урок 194. 00:06:49
    Section Challenge - Final Solution
  195. Урок 195. 00:01:55
    Section Overview
  196. Урок 196. 00:01:45
    Some Issues with Raw Pointers
  197. Урок 197. 00:03:49
    What is a Smart Pointer? Ownership and RAII
  198. Урок 198. 00:16:37
    Unique Pointers
  199. Урок 199. 00:19:15
    Shared Pointers
  200. Урок 200. 00:06:12
    Weak Pointers
  201. Урок 201. 00:08:13
    Custom Deleters
  202. Урок 202. 00:09:31
    Section Challenge 1
  203. Урок 203. 00:06:29
    Section Challenge 1 - Solution
  204. Урок 204. 00:02:31
    Section Overview
  205. Урок 205. 00:16:28
    Basic Concepts and a Simple Example: Dividing by Zero
  206. Урок 206. 00:08:22
    Throwing an Exception from a Function
  207. Урок 207. 00:05:29
    Handling Multiple Exceptions
  208. Урок 208. 00:10:27
    Stack Unwinding and How it Works
  209. Урок 209. 00:06:54
    Creating User-Defined Exception Classes
  210. Урок 210. 00:07:02
    Class Level Exceptions
  211. Урок 211. 00:04:12
    The C++ std::exception Class Hierarchy
  212. Урок 212. 00:04:17
    Section Challenge
  213. Урок 213. 00:05:35
    Section Challenge - Solution
  214. Урок 214. 00:02:22
    Section Overview
  215. Урок 215. 00:05:42
    Files, Streams and I/O
  216. Урок 216. 00:03:22
    Stream Manipulators
  217. Урок 217. 00:08:29
    Stream Manipulators - boolean
  218. Урок 218. 00:12:09
    Stream Manipulators - integers
  219. Урок 219. 00:15:22
    Stream Manipulators - floating point
  220. Урок 220. 00:14:10
    Stream Manipulators - align and fill
  221. Урок 221. 00:11:01
    Section Challenge 1
  222. Урок 222. 00:14:12
    Section Challenge 1 - Solution
  223. Урок 223. 00:11:36
    Reading from a Text File
  224. Урок 224. 00:14:06
    Reading from a Text File - Live Demo - Part 1
  225. Урок 225. 00:05:41
    Reading from a Text File - Live Demo - Part 2
  226. Урок 226. 00:03:09
    Section Challenge 2
  227. Урок 227. 00:07:18
    Section Challenge 2 - Solution
  228. Урок 228. 00:03:09
    Section Challenge 3
  229. Урок 229. 00:05:25
    Section Challenge 3 - Solution
  230. Урок 230. 00:09:34
    Writing to a Text File
  231. Урок 231. 00:07:33
    Writing to a Text File - Live Demo
  232. Урок 232. 00:02:30
    Section Challenge 4
  233. Урок 233. 00:04:04
    Section Challenge 4 - Solution
  234. Урок 234. 00:14:51
    Using String Streams
  235. Урок 235. 00:06:14
    File locations with some Popular IDEs
  236. Урок 236. 00:01:43
    Section Overview
  237. Урок 237. 00:09:12
    What is the STL?
  238. Урок 238. 00:07:20
    Generic Programming with Macros
  239. Урок 239. 00:20:39
    Generic Programming with Function Templates
  240. Урок 240. 00:14:08
    Generic Programming with Class Templates
  241. Урок 241. 00:13:57
    Creating a Generic Array Template Class
  242. Урок 242. 00:04:42
    Introduction to STL Containers
  243. Урок 243. 00:10:48
    Introduction to STL Iterators
  244. Урок 244. 00:16:02
    Introduction to Iterators - Demo
  245. Урок 245. 00:10:47
    Introduction to STL Algorithms
  246. Урок 246. 00:17:09
    Introduction to Algorithms - Demo
  247. Урок 247. 00:22:57
    Sequence Container - Array
  248. Урок 248. 00:24:57
    Sequence Containers - Vector
  249. Урок 249. 00:14:12
    Sequence Containers - Deque
  250. Урок 250. 00:04:47
    Section Challenge 1
  251. Урок 251. 00:03:36
    Section Challenge 1 - Solution
  252. Урок 252. 00:22:07
    Sequence Containers - List and Forward List
  253. Урок 253. 00:11:22
    Section Challenge 2
  254. Урок 254. 00:07:30
    Section Challenge 2 - Solution
  255. Урок 255. 00:15:51
    Associative Containers - Sets
  256. Урок 256. 00:16:56
    Associative Containers - Maps
  257. Урок 257. 00:08:16
    Section Challenge 3
  258. Урок 258. 00:06:05
    Section Challenge 3 - Solution
  259. Урок 259. 00:09:28
    Container Adaptors - Stack
  260. Урок 260. 00:07:40
    Container Adaptors - Queue
  261. Урок 261. 00:04:09
    Section Challenge 4
  262. Урок 262. 00:03:58
    Section Challenge 4 - Solution
  263. Урок 263. 00:08:05
    Container Adaptors - Priority Queue
  264. Урок 264. 00:02:17
    Installation and Setup Overview
  265. Урок 265. 00:04:54
    Installing the C++ Compiler on Windows
  266. Урок 266. 00:03:07
    Installing CodeLite on Windows
  267. Урок 267. 00:12:03
    Configuring CodeLite on Windows
  268. Урок 268. 00:02:02
    Installing the C++ Compiler on Mac OSX
  269. Урок 269. 00:01:57
    Installing CodeLite on Mac OSX
  270. Урок 270. 00:10:30
    Configuring CodeLite on Mac OSX
  271. Урок 271. 00:04:05
    Installing CodeLite on Ubuntu Linux
  272. Урок 272. 00:10:27
    Configuring CodeLite on Ubuntu Linux
  273. Урок 273. 00:06:22
    Creating a Default CodeLite Project Template (All Versions)
  274. Урок 274. 00:03:45
    Using the Included Source Code Course Resources
  275. Урок 275. 00:04:50
    Bonus Lecture and Information