Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

C++. Глава 4. экскурсия по C++ #163

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
34 changes: 34 additions & 0 deletions cpp/cpp_chapter_0040/text.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# условия
## if else if
Intey marked this conversation as resolved.
Show resolved Hide resolved
## тернарный оператор
Intey marked this conversation as resolved.
Show resolved Hide resolved
## switch case default

# Циклы
## for
## range based for
## while do
## do while

# Функции
## Синтаксис. Функции, лямбды
Intey marked this conversation as resolved.
Show resolved Hide resolved

# Классы
## Синтаксис. Конструктор и деструктор.
## виртуальные методы, наследование
## модификаторы наследования модификаторы
Intey marked this conversation as resolved.
Show resolved Hide resolved

# Структуры
## Синтаксис и отличие от классов
Intey marked this conversation as resolved.
Show resolved Hide resolved

# Перечисления
## enum
## enum class

# Пространства имён
## Вложенный вариант

# Шаблоны
Intey marked this conversation as resolved.
Show resolved Hide resolved
## функции
## классы

# Макросы
Intey marked this conversation as resolved.
Show resolved Hide resolved