You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: book/en-us/00-preface.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ order: 0
11
11
## Introduction
12
12
13
13
C++ user group is a fairly large. From the advent of C++98 to the official finalization of C++11, it has accumulated over a decade. C++14/17 is an important complement and optimization for C++11, and C++20 brings this language to the door of modernization. The extended features of all these new standards are given to the C++ language. Infused with new vitality.
14
-
C++ programmers, who are still using **traditional C++** (this book refers to C++98 and its previous C++ standards as traditional C++), may even amzed by the fact that they are not using the same language while reading modern C++ code.
14
+
C++ programmers, who are still using **traditional C++** (this book refers to C++98 and its previous C++ standards as traditional C++), may even amazed by the fact that they are not using the same language while reading modern C++ code.
15
15
16
16
**Modern C++** (this book refers to C++11/14/17/20) introduces a lot of features into traditional C++, which makes the whole C++ become language that modernized. Modern C++ not only enhances the usability of the C++ language itself, but the modification of the `auto` keyword semantics gives us more confidence in manipulating extremely complex template types. At the same time, a lot of enhancements have been made to the language runtime. The emergence of Lambda expressions has made C++ have the "closure" feature of "anonymous functions", which is almost in modern programming languages (such as Python/Swift/.. It has become commonplace, and the emergence of rvalue references has solved the problem of temporary object efficiency that C++ has long been criticized.
Before learning modern C++, let's take a look at the main features that have been deprecated since C++11:
25
25
26
-
> **Note**: Deprecation is not completely unusable, it is only intended to imply that programmers will disappear from future standards and should be avoided. However, the deprecated features are still part of the standard library, and most of the features are actually "permanently" reserved for compatibility reasons.
26
+
> **Note**: Deprecation is not completely unusable, it is only intended to imply that features will disappear from future standards and should be avoided. However, the deprecated features are still part of the standard library, and most of the features are actually "permanently" reserved for compatibility reasons.
27
27
28
28
-**The string literal constant is no longer allowed to be assigned to a `char *`. If you need to assign and initialize a `char *` with a string literal constant, you should use `const char *` or `auto`.**
29
+
29
30
```cpp
30
31
char *str = "hello world!"; // A deprecation warning will appear
Copy file name to clipboardexpand all lines: book/en-us/03-runtime.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ order: 3
11
11
## 3.1 Lambda Expression
12
12
13
13
Lambda expressions are one of the most important features in modern C++, and Lambda expressions actually provide a feature like anonymous functions.
14
-
Anonymous functions are used when a function is needed, but you don't want to use a function to name a function. There are actually many, many scenes like this.
14
+
Anonymous functions are used when a function is needed, but you don’t want to use name to call a function. There are actually many, many scenes like this.
15
15
So anonymous functions are almost standard on modern programming languages.
16
16
17
17
### Basics
@@ -24,7 +24,7 @@ The basic syntax of a Lambda expression is as follows:
24
24
}
25
25
```
26
26
27
-
The above grammar rules are well understood except for the things in `[catch list]`,
27
+
The above grammar rules are well understood except for the things in `[capture list]`,
28
28
except that the function name of the general function is omitted.
29
29
The return value is in the form of a `->`
30
30
(we have already mentioned this in the tail return type earlier in the previous section).
@@ -143,7 +143,7 @@ void lambda_generic() {
143
143
144
144
## 3.2 Function Object Wrapper
145
145
146
-
Although this part of the standard library is part of the standard library,
146
+
Although the features are part of the standard library and not found in runtime,
147
147
it enhances the runtime capabilities of the C++ language.
148
148
This part of the content is also very important, so put it here for introduction.
149
149
@@ -262,7 +262,7 @@ are all pure rvalue values.
262
262
263
263
**xvalue, expiring value** is the concept proposed by C++11 to introduce
264
264
rvalue references (so in traditional C++, pure rvalue and rvalue are the same concept),
265
-
that is, A value that is destroyed but can be moved.
265
+
a value that is destroyed but can be moved.
266
266
267
267
It would be a little hard to understand the xvalue,
Copy file name to clipboardexpand all lines: book/en-us/05-pointers.md
+7-7
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ These smart pointers include `std::shared_ptr`/`std::unique_ptr`/`std::weak_ptr`
26
26
27
27
## 5.2 `std::shared_ptr`
28
28
29
-
`std::shared_ptr` is a smart pointer that records how many `shared_ptr` points to an object, eliminating the display call `delete`, which automatically deletes the object when the reference count becomes zero.
29
+
`std::shared_ptr` is a smart pointer that records how many `shared_ptr` points to an object, eliminating to call `delete`, which automatically deletes the object when the reference count becomes zero.
30
30
31
31
But not enough, because using `std::shared_ptr` still needs to be called with `new`, which makes the code a certain degree of asymmetry.
32
32
@@ -133,12 +133,12 @@ int main() {
133
133
134
134
// p2 is empty, no prints
135
135
if(p2) p2->foo();
136
-
std::cout << "p2 was destroied" << std::endl;
136
+
std::cout << "p2 was destroyed" << std::endl;
137
137
}
138
138
// p1 is not empty, prints
139
139
if (p1) p1->foo();
140
140
141
-
// Foo instance will be destroied when leaving the scope
141
+
// Foo instance will be destroyed when leaving the scope
142
142
}
143
143
```
144
144
@@ -157,14 +157,14 @@ class A {
157
157
public:
158
158
std::shared_ptr<B> pointer;
159
159
~A() {
160
-
std::cout << "A was destroied" << std::endl;
160
+
std::cout << "A was destroyed" << std::endl;
161
161
}
162
162
};
163
163
class B {
164
164
public:
165
165
std::shared_ptr<A> pointer;
166
166
~B() {
167
-
std::cout << "B was destroied" << std::endl;
167
+
std::cout << "B was destroyed" << std::endl;
168
168
}
169
169
};
170
170
int main() {
@@ -177,9 +177,9 @@ int main() {
177
177
}
178
178
```
179
179
180
-
The result is that A and B will not be destroyed. This is because the pointer inside a, b also references `a, b`, which makes the reference count of `a, b` become 2, leaving the scope. When the `a, b` smart pointer is destructed, it can only cause the reference count of this area to be decremented by one. This causes the memory area reference count pointed to by the `a, b` object to be non-zero, but the external has no The way to find this area, it also caused a memory leak, as shown in Figure 5.1:
180
+
The result is that A and B will not be destroyed. This is because the pointer inside a, b also references `a, b`, which makes the reference count of `a, b` become 2, leaving the scope. When the `a, b` smart pointer is destructed, it can only cause the reference count of this area to be decremented by one. This causes the memory area reference count pointed to by the `a, b` object to be non-zero, but the external has no way to find this area, it also caused a memory leak, as shown in Figure 5.1:
The solution to this problem is to use the weak reference pointer `std::weak_ptr`, which is a weak reference (compared to `std::shared_ptr` is a strong reference). A weak reference does not cause an increase in the reference count. When a weak reference is used, the final release process is shown in Figure 5.2:
Copy file name to clipboardexpand all lines: book/en-us/07-thread.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -35,9 +35,9 @@ C++11 introduces a class related to `mutex`, with all related functions in the `
35
35
It can be locked by its member function `lock()`, and `unlock()` can be unlocked.
36
36
But in the process of actually writing the code, it is best not to directly call the member function,
37
37
Because calling member functions, you need to call `unlock()` at the exit of each critical section, and of course, exceptions.
38
-
At this time, C++11 also provides a template class `std::lock_gurad` for the RAII syntax for the mutex.
38
+
At this time, C++11 also provides a template class `std::lock_guard` for the RAII syntax for the mutex.
39
39
40
-
RAII guarantees the exceptional security of the code while losing the simplicity of the code.
40
+
RAII guarantees the exceptional security of the code while keeping the simplicity of the code.
41
41
42
42
```cpp
43
43
#include<iostream>
@@ -156,7 +156,7 @@ The condition variable `std::condition_variable` was born to solve the deadlock
156
156
For example, a thread may need to wait for a condition to be true to continue execution.
157
157
A dead wait loop can cause all other threads to fail to enter the critical section so that when the condition is true, a deadlock occurs.
158
158
Therefore, the `condition_variable` instance is created primarily to wake up the waiting thread and avoid deadlocks.
159
-
`notd_one()` of `std::condition_variable` is used to wake up a thread;
159
+
`notify_one()` of `std::condition_variable` is used to wake up a thread;
160
160
`notify_all()` is to notify all threads. Below is an example of a producer and consumer model:
161
161
162
162
```cpp
@@ -253,7 +253,7 @@ int main() {
253
253
}
254
254
```
255
255
256
-
Intuitively, ʻa = 5;` in `t2` seems to always execute before `flag = 1;`, and `while (flag != 1)` in `t1` seems to guarantee `std ::cout << "b = " << b << std::endl;` will not be executed before the mark is changed. Logically, it seems that the value of `b` should be equal to 5.
256
+
Intuitively, `a = 5;` seems in `t2` seems to always execute before `flag = 1;`, and `while (flag != 1)` in `t1` seems to guarantee `std ::cout << "b = " << b << std::endl;` will not be executed before the mark is changed. Logically, it seems that the value of `b` should be equal to 5.
257
257
But the actual situation is much more complicated than this, or the code itself is undefined behavior, because for `a` and `flag`, they are read and written in two parallel threads.
258
258
There has been competition. In addition, even if we ignore competing reading and writing, it is still possible to receive out-of-order execution of the CPU, and the impact of the compiler on the rearrangement of instructions.
259
259
Cause `a = 5` to occur after `flag = 1`. Thus `b` may output 0.
0 commit comments