Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай The C++20 Masterclass : From Fundamentals to Advanced, а также все другие курсы, прямо сейчас!
Премиум
  1. Урок 1. 00:09:29
    Welcome
  2. Урок 2. 00:06:48
    Getting the most out of the course
  3. Урок 3. 00:02:30
    Windows setup introduction
  4. Урок 4. 00:05:05
    Install and setup VS Code on Windows
  5. Урок 5. 00:04:57
    Microsoft Visual Studio Install - Windows
  6. Урок 6. 00:12:55
    VS Code setup with MSVC
  7. Урок 7. 00:07:20
    Install GCC & Clang - Windows
  8. Урок 8. 00:07:44
    Configure VS Code for GCC - Windows
  9. Урок 9. 00:07:21
    Configure VS Code for Clang - Windows
  10. Урок 10. 00:10:26
    Windows template project - All compilers
  11. Урок 11. 00:01:22
    Windows Development Environment setup - Summary
  12. Урок 12. 00:02:38
    Linux environment setup - Introduction
  13. Урок 13. 00:03:17
    Install & setup VS Code on Linux
  14. Урок 14. 00:07:13
    Install GCC on Linux
  15. Урок 15. 00:09:52
    Configure VS Code for GCC - Linux
  16. Урок 16. 00:03:16
    Install Clang on Linux
  17. Урок 17. 00:08:20
    Configure VS Code for Clang - Linux
  18. Урок 18. 00:07:41
    Template Project - All compilers - Linux
  19. Урок 19. 00:01:57
    Introduction
  20. Урок 20. 00:03:38
    Install and Setup Visual Studio Code
  21. Урок 21. 00:09:52
    Configure VS Code for gcc
  22. Урок 22. 00:08:20
    Configure VS Code for Clang
  23. Урок 23. 00:07:41
    Template Project - All compilers
  24. Урок 24. 00:07:40
    Online Compilers
  25. Урок 25. 00:07:58
    Project Template
  26. Урок 26. 00:12:56
    Your First C++ Program
  27. Урок 27. 00:06:00
    Comments
  28. Урок 28. 00:11:17
    Errors
  29. Урок 29. 00:18:23
    Statements and Functions
  30. Урок 30. 00:18:23
    Data input and output
  31. Урок 31. 00:06:46
    C++ Program Execution Model
  32. Урок 32. 00:04:19
    C++ core language Vs Standard library Vs STL
  33. Урок 33. 00:04:07
    Summary
  34. Урок 34. 00:04:19
    Introduction
  35. Урок 35. 00:16:48
    Number Systems
  36. Урок 36. 00:18:53
    Decimals and Integers
  37. Урок 37. 00:13:16
    Integer Modifiers
  38. Урок 38. 00:22:40
    Fractional Numbers
  39. Урок 39. 00:08:10
    Booleans
  40. Урок 40. 00:07:17
    Characters And Text
  41. Урок 41. 00:06:01
    Auto
  42. Урок 42. 00:07:36
    Assignments
  43. Урок 43. 00:01:24
    Summary
  44. Урок 44. 00:00:46
    Introduction
  45. Урок 45. 00:10:30
    Basic Operations
  46. Урок 46. 00:14:06
    Precedence and Associativity
  47. Урок 47. 00:11:16
    Prefix/Postfix Increment & Decrement
  48. Урок 48. 00:08:22
    Compound Assignment Operators
  49. Урок 49. 00:09:09
    RelationalOperators
  50. Урок 50. 00:15:18
    Logical Operators
  51. Урок 51. 00:37:18
    Output formatting
  52. Урок 52. 00:07:45
    Numeric Limits
  53. Урок 53. 00:13:14
    Math Functions
  54. Урок 54. 00:05:18
    Weird Integral Types
  55. Урок 55. 00:02:34
    Summary
  56. Урок 56. 00:01:24
    Introduction
  57. Урок 57. 00:20:13
    Literals
  58. Урок 58. 00:11:25
    Constants
  59. Урок 59. 00:14:51
    Constant Expressions
  60. Урок 60. 00:10:34
    constinit
  61. Урок 61. 00:02:17
    Summary
  62. Урок 62. 00:02:24
    Introduction
  63. Урок 63. 00:09:52
    Implicit Data Conversions
  64. Урок 64. 00:11:24
    Explicit Data Conversions
  65. Урок 65. 00:11:06
    Overflow and Underflow
  66. Урок 66. 00:01:02
    Summary
  67. Урок 67. 00:02:10
    Introduction
  68. Урок 68. 00:06:38
    Printing Integers in Binary
  69. Урок 69. 00:17:31
    Shift Operators
  70. Урок 70. 00:12:54
    Logical Bitwise Operators
  71. Урок 71. 00:08:36
    Compound Bitwise and Assignment Operators
  72. Урок 72. 00:23:40
    Masks
  73. Урок 73. 00:05:13
    Mask Example
  74. Урок 74. 00:05:17
    Packing Color Information
  75. Урок 75. 00:01:12
    Summary
  76. Урок 76. 00:03:33
    Variable Lifetime
  77. Урок 77. 00:08:48
    Variable Scope
  78. Урок 78. 00:01:32
    Introduction
  79. Урок 79. 00:17:20
    If Statements
  80. Урок 80. 00:07:57
    Else If
  81. Урок 81. 00:14:09
    Switch
  82. Урок 82. 00:13:55
    Short Circuit Evaluations
  83. Урок 83. 00:09:14
    Integral Logic Conditions
  84. Урок 84. 00:09:43
    Ternary Operators
  85. Урок 85. 00:04:50
    If constexpr
  86. Урок 86. 00:07:15
    If with Initializer
  87. Урок 87. 00:05:53
    Switch with Initializer
  88. Урок 88. 00:06:53
    Variable Scope Revisited
  89. Урок 89. 00:21:03
    Switch Scope
  90. Урок 90. 00:01:30
    Summary
  91. Урок 91. 00:01:32
    Introduction
  92. Урок 92. 00:30:16
    For Loop
  93. Урок 93. 00:06:07
    For Loop : Multiple Declarations
  94. Урок 94. 00:05:33
    Comma Operator
  95. Урок 95. 00:11:08
    Range Based For Loop
  96. Урок 96. 00:11:53
    While Loop
  97. Урок 97. 00:07:43
    Huge Loops with Output
  98. Урок 98. 00:10:27
    Do while loop
  99. Урок 99. 00:10:36
    Infinite loops
  100. Урок 100. 00:11:59
    Infinite Loops Practice
  101. Урок 101. 00:19:19
    Decrementing Loops
  102. Урок 102. 00:14:56
    Nested Loops
  103. Урок 103. 00:18:21
    Break and Continue
  104. Урок 104. 00:08:47
    Fix the Calculator
  105. Урок 105. 00:05:47
    For Loop with Init condition
  106. Урок 106. 00:03:02
    Summary
  107. Урок 107. 00:01:38
    Introduction
  108. Урок 108. 00:27:09
    Declaring and using arrays
  109. Урок 109. 00:10:51
    Size of an array
  110. Урок 110. 00:20:03
    Arrays of characters
  111. Урок 111. 00:06:58
    Array Bounds
  112. Урок 112. 00:20:02
    Generating Random Numbers
  113. Урок 113. 00:15:39
    Fun with character arrays : Fortune Teller V1
  114. Урок 114. 00:35:16
    Multi dimensional arrays
  115. Урок 115. 00:14:43
    Multi dimensional arrays of characters
  116. Урок 116. 00:08:45
    Fun with multi dimensional arrays of characters : Fortune Teller V2
  117. Урок 117. 00:03:28
    Summary
  118. Урок 118. 00:02:41
    Introduction
  119. Урок 119. 00:18:46
    Declaring and using pointers
  120. Урок 120. 00:12:49
    Pointer to char
  121. Урок 121. 00:06:35
    Arrays of pointer to char
  122. Урок 122. 00:28:25
    const pointer and pointer to const
  123. Урок 123. 00:07:13
    Array of const pointer to const char
  124. Урок 124. 00:11:49
    Pointers and arrays
  125. Урок 125. 00:16:21
    Swapping array data : A demo
  126. Урок 126. 00:01:34
    Pointer arithmetic : Introduction
  127. Урок 127. 00:20:23
    Pointer Arithmetic : Navigation
  128. Урок 128. 00:08:50
    Pointer arithmetic : Distance between elements
  129. Урок 129. 00:03:03
    Pointer Arithmetic : Comparing Pointers
  130. Урок 130. 00:04:23
    Swapping array data : Pointer arithmetic
  131. Урок 131. 00:09:05
    Program Memory Map Revisited
  132. Урок 132. 00:29:15
    Dynamic Memory Allocation
  133. Урок 133. 00:18:31
    Dangling Pointers
  134. Урок 134. 00:13:46
    When new fails
  135. Урок 135. 00:07:18
    Null pointer safety
  136. Урок 136. 00:10:27
    Memory Leaks
  137. Урок 137. 00:15:34
    Dynamically allocated arrays
  138. Урок 138. 00:06:01
    Summary
  139. Урок 139. 00:00:55
    Introduction
  140. Урок 140. 00:10:30
    Declaring and using references
  141. Урок 141. 00:14:58
    Comparing pointers and references
  142. Урок 142. 00:07:19
    References and const
  143. Урок 143. 00:06:14
    References with Range based for loops
  144. Урок 144. 00:01:05
    Summary
  145. Урок 145. 00:01:56
    Introduction
  146. Урок 146. 00:23:05
    Character Manipulation
  147. Урок 147. 00:32:14
    C-string manipulation
  148. Урок 148. 00:19:37
    C-String concatenation and copy
  149. Урок 149. 00:02:20
    Introducing std::string
  150. Урок 150. 00:09:27
    Declaring and using std::string
  151. Урок 151. 00:30:13
    Concatenating std::string
  152. Урок 152. 00:19:25
    Accessing Characters in std::string
  153. Урок 153. 00:17:23
    std::string size and capacity
  154. Урок 154. 00:18:50
    Modifying std::string
  155. Урок 155. 00:12:27
    Comparing std::string's
  156. Урок 156. 00:09:31
    Comparing with std::string::compare()
  157. Урок 157. 00:20:05
    std::string : Replacing, copying, resizing and swapping
  158. Урок 158. 00:16:21
    Searching std::string
  159. Урок 159. 00:14:07
    Transforming std::string to/from numbers
  160. Урок 160. 00:18:34
    Escape sequences
  161. Урок 161. 00:13:49
    Raw string literals
  162. Урок 162. 00:09:31
    Copied Strings
  163. Урок 163. 00:30:59
    std::string_view
  164. Урок 164. 00:03:27
    Summary
  165. Урок 165. 00:01:16
    Introduction
  166. Урок 166. 00:32:26
    First hand on C++ Functions
  167. Урок 167. 00:14:41
    Function declaration and definitions
  168. Урок 168. 00:27:01
    Multiple Files : Revisition the Linker stage
  169. Урок 169. 00:08:15
    Pass by value
  170. Урок 170. 00:03:25
    Pass by const value
  171. Урок 171. 00:07:35
    Pass by pointer
  172. Урок 172. 00:04:26
    Pass by pointer to const
  173. Урок 173. 00:04:41
    Pass by const pointer to const
  174. Урок 174. 00:05:57
    Pass by reference
  175. Урок 175. 00:03:49
    Pass by const reference
  176. Урок 176. 00:06:09
    Passing function parameters :Summary
  177. Урок 177. 00:17:40
    Array function parameters
  178. Урок 178. 00:05:38
    Sized array function parameters
  179. Урок 179. 00:07:07
    Passing sized arrays by reference
  180. Урок 180. 00:10:14
    Multi dimensional array function parameter
  181. Урок 181. 00:12:15
    Default function arguments
  182. Урок 182. 00:07:11
    Implicit Conversions
  183. Урок 183. 00:10:52
    Implicit conversions with references
  184. Урок 184. 00:06:21
    Implicit conversions with pointers
  185. Урок 185. 00:12:04
    string_view Parameters
  186. Урок 186. 00:05:53
    Implicit conversions from std::string_view to std::string
  187. Урок 187. 00:08:54
    constexpr functions
  188. Урок 188. 00:04:06
    consteval functions
  189. Урок 189. 00:02:23
    Summary
  190. Урок 190. 00:00:54
    Introduction
  191. Урок 191. 00:24:32
    Enumerated types (Enum Class)
  192. Урок 192. 00:09:41
    using enum
  193. Урок 193. 00:12:35
    Legacy enumerated types
  194. Урок 194. 00:06:59
    Type aliases
  195. Урок 195. 00:01:11
    Summary
  196. Урок 196. 00:00:44
    Introduction
  197. Урок 197. 00:10:33
    Grab and use the arguments
  198. Урок 198. 00:06:07
    Calculator V1
  199. Урок 199. 00:18:20
    Calculator V2
  200. Урок 200. 00:01:11
    Summary
  201. Урок 201. 00:00:39
    Introduction
  202. Урок 202. 00:13:56
    Input and output parameters
  203. Урок 203. 00:14:59
    Returning from functions (by value)
  204. Урок 204. 00:22:01
    Returning by reference
  205. Урок 205. 00:14:49
    Returning by pointer
  206. Урок 206. 00:09:05
    Returning array element pointer
  207. Урок 207. 00:20:13
    Bare auto type deduction
  208. Урок 208. 00:11:01
    Function return type deduction
  209. Урок 209. 00:09:42
    Return type deduction with references
  210. Урок 210. 00:07:04
    Function definitions with return type deduction
  211. Урок 211. 00:16:16
    Optional output from functions
  212. Урок 212. 00:19:31
    Introducing std::optional
  213. Урок 213. 00:14:41
    Optional output with std::optional
  214. Урок 214. 00:02:30
    Summary
  215. Урок 215. 00:01:42
    Introduction
  216. Урок 216. 00:14:59
    Overloading with different parameters
  217. Урок 217. 00:11:21
    Overloading with pointer parameters
  218. Урок 218. 00:15:01
    Overloading with reference parameters
  219. Урок 219. 00:06:03
    Overloading with const parameters by value
  220. Урок 220. 00:11:10
    Overloading with const pointer and pointer to const parameters
  221. Урок 221. 00:08:04
    Overloading with const references
  222. Урок 222. 00:04:54
    Overloading with default parameters
  223. Урок 223. 00:04:20
    Summary
  224. Урок 224. 00:00:39
    Introduction
  225. Урок 225. 00:30:47
    Declaring and using lambda functions
  226. Урок 226. 00:14:00
    Capture lists
  227. Урок 227. 00:05:54
    Capture all in context
  228. Урок 228. 00:02:26
    Summary
  229. Урок 229. 00:00:58
    Introduction
  230. Урок 230. 00:15:54
    Static variables
  231. Урок 231. 00:11:55
    Inline functions
  232. Урок 232. 00:08:21
    Recursive Functions
  233. Урок 233. 00:01:52
    Summary
  234. Урок 234. 00:01:27
    Introduction
  235. Урок 235. 00:13:34
    The call stack
  236. Урок 236. 00:04:57
    Debugging C++ applications
  237. Урок 237. 00:31:57
    Debugging in VS Code
  238. Урок 238. 00:07:12
    Debugging in CodeLite
  239. Урок 239. 00:06:18
    Debugging in Microsoft Visual Studio
  240. Урок 240. 00:07:29
    Debugging arrays, loops and pointers
  241. Урок 241. 00:01:33
    Summary
  242. Урок 242. 00:01:38
    Introduction
  243. Урок 243. 00:38:07
    Trying out function templates
  244. Урок 244. 00:15:56
    Template type deduction and explicit arguments
  245. Урок 245. 00:13:08
    Template parameters by reference
  246. Урок 246. 00:15:51
    Template specialization
  247. Урок 247. 00:13:29
    Function templates with overloading
  248. Урок 248. 00:24:14
    Function templates with multiple parameters
  249. Урок 249. 00:12:51
    Template return type deduction with auto
  250. Урок 250. 00:19:13
    Decltype and trailing return types
  251. Урок 251. 00:06:16
    Declytpe auto
  252. Урок 252. 00:13:57
    Default arguments
  253. Урок 253. 00:15:25
    Non type template parameters
  254. Урок 254. 00:08:40
    Auto Function Templates
  255. Урок 255. 00:12:24
    Named Template Parameters for Lambdas
  256. Урок 256. 00:16:34
    Type traits
  257. Урок 257. 00:10:05
    constexpr if
  258. Урок 258. 00:03:37
    Summary
  259. Урок 259. 00:02:16
    Introduction
  260. Урок 260. 00:18:46
    Using Concepts
  261. Урок 261. 00:17:13
    Building your own concepts
  262. Урок 262. 00:17:09
    Zooming in on the requires clause
  263. Урок 263. 00:09:47
    Combining concepts : Conjunction(&&) and Disjunction(||)
  264. Урок 264. 00:06:15
    Concepts and auto
  265. Урок 265. 00:02:26
    Summary
  266. Урок 266. 00:00:53
    Introduction
  267. Урок 267. 00:20:32
    Your First Class
  268. Урок 268. 00:15:33
    C++ Constructors
  269. Урок 269. 00:06:07
    Defaulted constructors
  270. Урок 270. 00:10:25
    Setters and Getters
  271. Урок 271. 00:21:12
    Class Across Multiple Files
  272. Урок 272. 00:06:35
    Creating classes through IDEs
  273. Урок 273. 00:12:00
    Arrow pointer call notation
  274. Урок 274. 00:22:57
    Destructors
  275. Урок 275. 00:05:19
    Order of Constructor Destructor Calls
  276. Урок 276. 00:22:30
    The this Pointer
  277. Урок 277. 00:09:05
    struct
  278. Урок 278. 00:10:16
    Size of objects
  279. Урок 279. 00:04:04
    Summary
  280. Урок 280. 00:01:32
    Introduction
  281. Урок 281. 00:26:49
    const objects
  282. Урок 282. 00:18:29
    Const objects as function arguments
  283. Урок 283. 00:13:37
    const member functions
  284. Урок 284. 00:15:04
    Getters that work as setters
  285. Урок 285. 00:15:22
    Dangling pointers and references in objects
  286. Урок 286. 00:03:46
    Zooming in on const
  287. Урок 287. 00:08:40
    Mutable Member variables
  288. Урок 288. 00:13:06
    Structured Bindings
  289. Урок 289. 00:03:52
    Summary
  290. Урок 290. 00:00:40
    Introduction
  291. Урок 291. 00:14:16
    Default parameters for constructors
  292. Урок 292. 00:09:53
    Initializer lists for constructors
  293. Урок 293. 00:09:59
    Initializer lists Vs Member wise copy initialization
  294. Урок 294. 00:17:24
    Explicit constructors
  295. Урок 295. 00:23:20
    Constructor delegation
  296. Урок 296. 00:39:08
    Copy constructors
  297. Урок 297. 00:12:41
    Objects stored in arrays are copies
  298. Урок 298. 00:04:00
    Shallow Vs Deep copy
  299. Урок 299. 00:22:00
    Move constructors
  300. Урок 300. 00:07:45
    Deleted constructors
  301. Урок 301. 00:27:41
    Initializer list constructors
  302. Урок 302. 00:06:19
    Aggregate Initialization
  303. Урок 303. 00:09:28
    Designated Initializers (C++20)
  304. Урок 304. 00:11:04
    Uniform initializatoin for aggregates
  305. Урок 305. 00:08:16
    Summary
  306. Урок 306. 00:00:38
    Introduction
  307. Урок 307. 00:14:24
    Friend functions
  308. Урок 308. 00:10:05
    Friend classes
  309. Урок 309. 00:02:01
    Summary
  310. Урок 310. 00:03:16
    Introduction (theory)
  311. Урок 311. 00:03:12
    Static Members
  312. Урок 312. 00:33:54
    Static member variables
  313. Урок 313. 00:03:43
    Inline static member variables (C++17)
  314. Урок 314. 00:07:16
    Static constants
  315. Урок 315. 00:18:31
    Static constants pre C++17
  316. Урок 316. 00:21:11
    Member variables of self type
  317. Урок 317. 00:09:05
    Member variables of other types
  318. Урок 318. 00:14:29
    Static member functions
  319. Урок 319. 00:13:38
    Nested classes
  320. Урок 320. 00:14:41
    In class member initialization revisited
  321. Урок 321. 00:06:38
    Summary
  322. Урок 322. 00:01:33
    Introduction
  323. Урок 323. 00:13:47
    Creating Namespaces
  324. Урок 324. 00:11:40
    Namespaces Across Multiple Files
  325. Урок 325. 00:06:38
    Default Global Namespace
  326. Урок 326. 00:04:43
    Built In Namespaces
  327. Урок 327. 00:15:45
    Using Declarations
  328. Урок 328. 00:10:05
    Anounymous Namespaces
  329. Урок 329. 00:06:31
    Nested Namespaces
  330. Урок 330. 00:05:28
    Namespace Aliases
  331. Урок 331. 00:04:05
    Summary
  332. Урок 332. 00:00:57
    Introduction
  333. Урок 333. 00:16:08
    Compiling and linking : Compilation Model
  334. Урок 334. 00:26:14
    Declarations and definitions
  335. Урок 335. 00:15:38
    One Definition Rule
  336. Урок 336. 00:23:41
    Linkage
  337. Урок 337. 00:03:27
    Global external variables
  338. Урок 338. 00:11:33
    Flipping linkage
  339. Урок 339. 00:15:07
    Inline variables and functions
  340. Урок 340. 00:10:51
    Inline Vs static (anonymous namespaces)
  341. Урок 341. 00:11:24
    Forward declarations
  342. Урок 342. 00:03:47
    Summary
  343. Урок 343. 00:02:46
    Introduction
  344. Урок 344. 00:36:03
    Unique pointers
  345. Урок 345. 00:26:36
    Unique pointers as function parameters and return values
  346. Урок 346. 00:12:32
    Unique pointers and arrays
  347. Урок 347. 00:37:36
    Shared pointers
  348. Урок 348. 00:17:46
    Creating shared pointers from unique pointers
  349. Урок 349. 00:09:23
    Shared pointers with arrays
  350. Урок 350. 00:19:00
    Shared pointers as function parameters and return values
  351. Урок 351. 00:20:34
    Weak pointers
  352. Урок 352. 00:06:05
    Summary
  353. Урок 353. 00:02:57
    Introduction
  354. Урок 354. 00:21:20
    Addition Operator as Member
  355. Урок 355. 00:13:33
    Addition Operator as Non-Member
  356. Урок 356. 00:14:55
    Subscript Operator for Reading
  357. Урок 357. 00:09:41
    Subscript Operator for Reading and Writing
  358. Урок 358. 00:22:43
    Subscript Operator for Collection Types
  359. Урок 359. 00:15:59
    Stream Insertion Operation Operator
  360. Урок 360. 00:08:38
    Stream Extraction Operator
  361. Урок 361. 00:11:49
    Other Arithmetic Operators
  362. Урок 362. 00:13:57
    Compound Operators && Reusing Other Operators
  363. Урок 363. 00:26:05
    Custom Type Conversions
  364. Урок 364. 00:12:39
    Implicit Conversions with Overriden Binary Operators
  365. Урок 365. 00:08:50
    Unary Prefix Increment Operator As Member
  366. Урок 366. 00:07:00
    Unary Prefix Increment Operator as Non-Member
  367. Урок 367. 00:13:20
    Unary Postfix Increment Operator
  368. Урок 368. 00:03:55
    Prefix-Postfix Decrement Operator (Exercise)
  369. Урок 369. 00:41:59
    Copy Assignment Operator
  370. Урок 370. 00:08:44
    Copy Assignment Operator for Other Types
  371. Урок 371. 00:13:35
    Type Conversions Recap
  372. Урок 372. 00:09:11
    Functors
  373. Урок 373. 00:07:47
    Summary
  374. Урок 374. 00:02:33
    Introduction
  375. Урок 375. 00:17:38
    All Logical Operators
  376. Урок 376. 00:14:10
    Rel Ops Namespace
  377. Урок 377. 00:12:21
    Logical Operators with Implicit Conversions
  378. Урок 378. 00:38:35
    Three way comparison operator
  379. Урок 379. 00:19:19
    Defaulted Equality Operator
  380. Урок 380. 00:12:06
    Custom equality operator
  381. Урок 381. 00:20:36
    Default ordering with spaceship operator
  382. Урок 382. 00:12:16
    Members without the spaceship operator
  383. Урок 383. 00:18:53
    Custom spaceship operator for ordering
  384. Урок 384. 00:12:49
    Logical Operators Simplified
  385. Урок 385. 00:11:20
    Spaceship operator as a non member
  386. Урок 386. 00:10:24
    Zooming in on weak ordering - Example 1
  387. Урок 387. 00:13:56
    Zooming on weak ordering - Example 2
  388. Урок 388. 00:12:56
    Zooming on partial ordering
  389. Урок 389. 00:05:01
    Summing up on comparisons in C++ 20
  390. Урок 390. 00:07:54
    Summary
  391. Урок 391. 00:03:16
    Introduction
  392. Урок 392. 00:25:11
    First try on Inheritance
  393. Урок 393. 00:10:57
    Protected members
  394. Урок 394. 00:04:44
    Base class access specifiers : Zooming in
  395. Урок 395. 00:30:53
    Base class access specifiers : A demo
  396. Урок 396. 00:18:55
    Closing in on Private Inheritance
  397. Урок 397. 00:20:23
    Resurecting Members Back in Context
  398. Урок 398. 00:10:39
    Default Constructors with Inheritance
  399. Урок 399. 00:29:19
    Custom Constructors With Inheritance
  400. Урок 400. 00:24:58
    Copy Constructors with Inheritance
  401. Урок 401. 00:14:07
    Inheriting Base Constructors
  402. Урок 402. 00:06:20
    Inheritance and Destructors
  403. Урок 403. 00:08:57
    Reused Symbols in Inheritance
  404. Урок 404. 00:09:07
    Summary
  405. Урок 405. 00:05:52
    Introduction
  406. Урок 406. 00:33:16
    Static Binding with Inheritance
  407. Урок 407. 00:19:08
    Dynamic binding with virtual functions
  408. Урок 408. 00:12:07
    Size of polymorphic objects and slicing
  409. Урок 409. 00:19:05
    Polymorphic objects stored in collections (array)
  410. Урок 410. 00:07:05
    Override
  411. Урок 411. 00:14:50
    Overloading, overriding and function hiding
  412. Урок 412. 00:25:29
    Inheritance and Polymorphism at different levels
  413. Урок 413. 00:16:11
    Inheritance and polymorphism with static members
  414. Урок 414. 00:18:29
    Final
  415. Урок 415. 00:05:27
    Final and Override are not keywords
  416. Урок 416. 00:17:01
    Polymorphic functions and access specifiers
  417. Урок 417. 00:10:08
    Non polymorphic functions and access specifiers
  418. Урок 418. 00:15:36
    Virtual functions with default arguments
  419. Урок 419. 00:12:21
    Virtual Destructors
  420. Урок 420. 00:32:40
    Dynamic casts
  421. Урок 421. 00:16:28
    Polymorphic Functions and Destructors
  422. Урок 422. 00:16:52
    typeid() operator
  423. Урок 423. 00:18:52
    Pure virtual functions and abstract classes
  424. Урок 424. 00:23:52
    Abstract Classes as Interfaces
  425. Урок 425. 00:12:01
    Summary
  426. Урок 426. 00:02:08
    Introduction
  427. Урок 427. 00:27:43
    Try and Catch Blocks and scope
  428. Урок 428. 00:17:31
    The need for exceptions
  429. Урок 429. 00:30:42
    Handling Exceptions At Different Levels
  430. Урок 430. 00:06:47
    Multiple Handlers for an Exception
  431. Урок 431. 00:10:33
    Nested Try Blocks
  432. Урок 432. 00:08:22
    Throwing Classs Objects
  433. Урок 433. 00:11:24
    Exceptions as Class Objects with Inheritance Hierarchies
  434. Урок 434. 00:05:04
    Polymorphic Exceptions
  435. Урок 435. 00:07:41
    RethrownExceptions
  436. Урок 436. 00:10:01
    Program custom termination
  437. Урок 437. 00:08:24
    Ellipsis catch all block
  438. Урок 438. 00:07:10
    noexcept Specifier
  439. Урок 439. 00:06:30
    Exceptions in Destructors
  440. Урок 440. 00:02:32
    Standard Exceptions
  441. Урок 441. 00:08:38
    Catching Standard Exceptions
  442. Урок 442. 00:06:31
    Throwing Standard Exceptions
  443. Урок 443. 00:08:38
    Subclassing Standard Exceptions
  444. Урок 444. 00:05:55
    Summary
  445. Урок 445. 00:11:33
    Introduction
  446. Урок 446. 00:13:09
    Constructing and destructing
  447. Урок 447. 00:13:21
    Adding and Expanding
  448. Урок 448. 00:16:05
    Removing Items
  449. Урок 449. 00:13:49
    Other operators (=,+,+=)
  450. Урок 450. 00:04:43
    Zooming out on BoxContainer
  451. Урок 451. 00:06:40
    Storing In Different Types
  452. Урок 452. 00:01:48
    Summary
  453. Урок 453. 00:02:29
    Introduction
  454. Урок 454. 00:28:58
    Your First Class Template
  455. Урок 455. 00:07:23
    Instances Of Class templates
  456. Урок 456. 00:19:01
    Non type template parameters
  457. Урок 457. 00:10:05
    Default Values for template parameters
  458. Урок 458. 00:06:18
    Explicit Template Instantiations
  459. Урок 459. 00:21:25
    Template Specialization
  460. Урок 460. 00:14:18
    Tempate Specialization with select methods
  461. Урок 461. 00:02:30
    Friends of class templates[Theory intro]
  462. Урок 462. 00:11:48
    Friend functions for class templates
  463. Урок 463. 00:12:46
    Stream insertion operator for class templates
  464. Урок 464. 00:11:25
    Class templates with type traits and static asserts
  465. Урок 465. 00:19:30
    Class templates with C++ 20 concepts
  466. Урок 466. 00:15:27
    Built In Concepts
  467. Урок 467. 00:09:47
    Concepts Example #1
  468. Урок 468. 00:06:11
    Concepts Example #2
  469. Урок 469. 00:07:51
    Summary
  470. Урок 470. 00:09:16
    Introduction
  471. Урок 471. 00:15:52
    Lvalues and Rvalues
  472. Урок 472. 00:08:42
    Rvalue references
  473. Урок 473. 00:13:38
    Moving temporaries around
  474. Урок 474. 00:15:01
    Move constructors and assignment operators
  475. Урок 475. 00:12:17
    Moving Lvalues with std::move
  476. Урок 476. 00:07:54
    Invalidating pointers after std::move
  477. Урок 477. 00:13:46
    Move only types
  478. Урок 478. 00:22:00
    Passing by rvalue reference
  479. Урок 479. 00:06:32
    Summary
  480. Урок 480. 00:05:46
    Introduction
  481. Урок 481. 00:15:01
    Function Pointers
  482. Урок 482. 00:21:21
    Callback Functions
  483. Урок 483. 00:08:57
    Function Pointer Type Aliases
  484. Урок 484. 00:11:52
    Function Pointer Type Aliases with Templates
  485. Урок 485. 00:11:13
    Functors
  486. Урок 486. 00:14:45
    Standard Functors (in the <functional> header)
  487. Урок 487. 00:14:22
    Functors with parameters
  488. Урок 488. 00:08:57
    Functors and lambda functions
  489. Урок 489. 00:12:29
    Lambda functions as callbacks
  490. Урок 490. 00:15:53
    Capturing by value under the hood
  491. Урок 491. 00:08:59
    Capturing by reference under the hood
  492. Урок 492. 00:08:08
    Mixin capturing
  493. Урок 493. 00:09:04
    Capturing the this pointer
  494. Урок 494. 00:20:28
    std::function
  495. Урок 495. 00:06:08
    Summary
  496. Урок 496. 00:07:38
    Introduction
  497. Урок 497. 00:21:15
    std::vector
  498. Урок 498. 00:13:46
    std::array
  499. Урок 499. 00:22:13
    Iterators
  500. Урок 500. 00:08:26
    Traversing container subsets with iterators
  501. Урок 501. 00:09:52
    Reverse iterarators
  502. Урок 502. 00:11:06
    Constant iterators
  503. Урок 503. 00:09:51
    Iterator types
  504. Урок 504. 00:07:27
    std::begin and std::end
  505. Урок 505. 00:07:05
    Summary
  506. Урок 506. 00:06:18
    Introduction
  507. Урок 507. 00:29:18
    Sequence Containers : Deque
  508. Урок 508. 00:32:17
    Sequence Containers : Forward list
  509. Урок 509. 00:21:05
    Sequence Containers : List
  510. Урок 510. 00:21:27
    Sequence containers : std::vector revisited
  511. Урок 511. 00:13:51
    Sequence Containers : std::array revisited
  512. Урок 512. 00:03:33
    Associative Containers : Intro
  513. Урок 513. 00:13:17
    Associative Containers : Pair
  514. Урок 514. 00:35:24
    Associative Containers : Set
  515. Урок 515. 00:24:30
    Associative Containres : Map
  516. Урок 516. 00:08:42
    Associative Containers : Multiset & multimap
  517. Урок 517. 00:07:15
    Unordered Associative Containers
  518. Урок 518. 00:08:32
    Container Adaptors : Intro
  519. Урок 519. 00:21:52
    Container Adaptors : Stack
  520. Урок 520. 00:11:50
    Container Adaptors: Queue
  521. Урок 521. 00:24:24
    Container Adaptors : Priority queue
  522. Урок 522. 00:02:01
    Summary
  523. Урок 523. 00:03:10
    Introduction
  524. Урок 524. 00:16:21
    All of
  525. Урок 525. 00:12:33
    for_each
  526. Урок 526. 00:11:28
    max_element and min_element
  527. Урок 527. 00:07:29
    find
  528. Урок 528. 00:09:16
    copy
  529. Урок 529. 00:12:53
    sort
  530. Урок 530. 00:09:14
    Transform
  531. Урок 531. 00:02:49
    Summary
  532. Урок 532. 00:01:39
    Introduction
  533. Урок 533. 00:16:23
    Range Algorithms
  534. Урок 534. 00:15:03
    C++ 20 Ranges Library Iterator Pair Algorithms
  535. Урок 535. 00:17:23
    Projections
  536. Урок 536. 00:35:49
    Views and and Range Adaptors
  537. Урок 537. 00:17:25
    View composition and Pipe operator
  538. Урок 538. 00:12:16
    Range Factories
  539. Урок 539. 00:02:09
    Summary
  540. Урок 540. 00:05:11
    Introduction
  541. Урок 541. 00:19:32
    Iterator Powers
  542. Урок 542. 00:07:18
    Custom Iterator Theory
  543. Урок 543. 00:14:04
    Building Custom Input Iterators
  544. Урок 544. 00:05:15
    Building Custom Output Iterators
  545. Урок 545. 00:03:37
    Building Custom Forward Iterators
  546. Урок 546. 00:05:11
    Building Custom Bidirectional Iterators
  547. Урок 547. 00:06:52
    Building Custom Random Access Iterators
  548. Урок 548. 00:18:07
    Custom Iterators with C++ 20 Ranges and Views
  549. Урок 549. 00:10:59
    Constant Iterators
  550. Урок 550. 00:08:03
    Raw Pointers as Iterators
  551. Урок 551. 00:04:49
    Wrapping Iterators From Other Containers
  552. Урок 552. 00:02:38
    Summary
  553. Урок 553. 00:04:36
    Introduction
  554. Урок 554. 00:06:40
    Coroutine workflow
  555. Урок 555. 00:11:58
    Coroutine keywords
  556. Урок 556. 00:17:09
    Couroutine Infrastructure
  557. Урок 557. 00:26:39
    co_await
  558. Урок 558. 00:15:38
    co_yield
  559. Урок 559. 00:12:20
    co_rerturn
  560. Урок 560. 00:22:01
    Custom Generator Coroutine Type
  561. Урок 561. 00:16:21
    Third Party Generator Type
  562. Урок 562. 00:03:23
    Summary
  563. Урок 563. 00:21:10
    Introduction
  564. Урок 564. 00:20:20
    Your first module
  565. Урок 565. 00:03:50
    Block exports
  566. Урок 566. 00:04:57
    Separating module interface from implementation (same file)
  567. Урок 567. 00:06:31
    Separating interface from implementatoin (differen files)
  568. Урок 568. 00:05:11
    Multiple implementation files
  569. Урок 569. 00:07:29
    Multiple interface files
  570. Урок 570. 00:05:03
    export import
  571. Урок 571. 00:09:32
    Submodules
  572. Урок 572. 00:10:09
    Module Interface partitions
  573. Урок 573. 00:03:26
    Summary