Skip to content

Commit a5d1563

Browse files
committed
book: fix a chunk of english typos
Fixes #87
1 parent 89060d4 commit a5d1563

12 files changed

+34
-32
lines changed

assets/figures/pointers1_en.png

25.8 KB
Loading

book/en-us/00-preface.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ order: 0
1111
## Introduction
1212

1313
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.
1515

1616
**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.
1717

book/en-us/01-intro.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,10 @@ InstalledDir: /Library/Developer/CommandLineTools/usr/bin
2323

2424
Before learning modern C++, let's take a look at the main features that have been deprecated since C++11:
2525

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.
2727
2828
- **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+
2930
```cpp
3031
char *str = "hello world!"; // A deprecation warning will appear
3132
```
@@ -115,6 +116,7 @@ LDFLAGS_COMMON = -std=c++2a
115116
all:
116117
$(C) -c $(SOURCE_C)
117118
$(CXX) $(SOURCE_CXX) $(OBJECTS_C) $(LDFLAGS_COMMON) -o $(TARGET)
119+
118120
clean:
119121
rm -rf *.o $(TARGET)
120122
```

book/en-us/02-usability.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ In the above example, `char arr_4[len_2]` may be confusing because `len_2` has b
143143
Why is `char arr_4[len_2]` still illegal?
144144
This is because the length of the array in the C++ standard must be a constant expression,
145145
and for `len_2`, this is a `const` constant, not a constant expression,
146-
so even if this behavior is in most compilers Both support, but) it is an illegal behavior,
146+
so even if this behavior is supported by most compilers, but it is an illegal behavior,
147147
we need to use the `constexpr` feature introduced in C++11, which will be introduced next,
148148
to solve this problem; for `arr_5`, before C++98 The compiler cannot know that `len_foo()`
149149
actually returns a constant at runtime, which causes illegal production.
@@ -155,7 +155,7 @@ actually returns a constant at runtime, which causes illegal production.
155155
C++11 provides `constexpr` to let the user explicitly declare that the function or
156156
object constructor will become a constant expression at compile time.
157157
This keyword explicitly tells the compiler that it should verify that `len_foo`
158-
should be a compile time. Constant expression.
158+
should be a compile time constant expression. Constant expression.
159159
160160
In addition, the function of `constexpr` can use recursion:
161161
@@ -222,8 +222,8 @@ int main() {
222222
```
223223

224224
In the above code, we can see that the `itr` variable is defined in the scope of
225-
the entire `main()`, which causes us to rename the other when we need to traverse
226-
the entire `std::vectors` again. A variable. C++17 eliminates this limitation so that
225+
the entire `main()`, which causes us to rename the other when a variable need to traverse
226+
the entire `std::vectors` again. C++17 eliminates this limitation so that
227227
we can do this in if(or switch):
228228

229229
```cpp
@@ -280,7 +280,7 @@ To solve this problem,
280280
C++11 first binds the concept of the initialization list to the type
281281
and calls it `std::initializer_list`,
282282
allowing the constructor or other function to use the initialization list
283-
like a parameter, which is The initialization of class objects provides
283+
like a parameter, which is the initialization of class objects provides
284284
a unified bridge between normal arrays and POD initialization methods,
285285
such as:
286286

@@ -961,7 +961,7 @@ public:
961961
};
962962
class Subclass : public Base {
963963
public:
964-
using Base::Base; // inhereit constructor
964+
using Base::Base; // inheritance constructor
965965
};
966966
int main() {
967967
Subclass s(3);

book/en-us/03-runtime.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ order: 3
1111
## 3.1 Lambda Expression
1212

1313
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 dont want to use name to call a function. There are actually many, many scenes like this.
1515
So anonymous functions are almost standard on modern programming languages.
1616

1717
### Basics
@@ -24,7 +24,7 @@ The basic syntax of a Lambda expression is as follows:
2424
}
2525
```
2626

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]`,
2828
except that the function name of the general function is omitted.
2929
The return value is in the form of a `->`
3030
(we have already mentioned this in the tail return type earlier in the previous section).
@@ -143,7 +143,7 @@ void lambda_generic() {
143143

144144
## 3.2 Function Object Wrapper
145145

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,
147147
it enhances the runtime capabilities of the C++ language.
148148
This part of the content is also very important, so put it here for introduction.
149149

@@ -262,7 +262,7 @@ are all pure rvalue values.
262262
263263
**xvalue, expiring value** is the concept proposed by C++11 to introduce
264264
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.
266266
267267
It would be a little hard to understand the xvalue,
268268
let's look at the code like this:
@@ -330,7 +330,7 @@ int main()
330330

331331
std::string&& rv2 = lv1 + lv2; // legal, rvalue ref extend lifecycle
332332
rv2 += "string"; // legal, non-const reference can be modified
333-
std::cout << rv2 << std::endl; // string,string,string,
333+
std::cout << rv2 << std::endl; // string,string,string,string
334334

335335
reference(rv2); // output: lvalue
336336

@@ -496,7 +496,7 @@ For `pass(1)`, although the value is the rvalue, since `v` is a reference, it is
496496
Therefore `reference(v)` will call `reference(int&)` and output lvalue.
497497
For `pass(l)`, `l` is an lvalue, why is it successfully passed to `pass(T&&)`?
498498
499-
This is based on the **reference contraction rule**: In traditional C++, we are not able to continue to reference a reference type.
499+
This is based on the **reference collapsing rule**: In traditional C++, we are not able to continue to reference a reference type.
500500
However,
501501
C++ has relaxed this practice with the advent of rvalue references,
502502
resulting in a reference collapse rule that allows us to reference references,

book/en-us/04-containers.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ Key:[3] Value:[3]
172172
## 4.3 Tuples
173173

174174
Programmers who have known Python should be aware of the concept of tuples. Looking at the containers in traditional C++, except for `std::pair`
175-
There seems to be no ready-made structure to store different types of data (usually we will define the structure ourselves).
175+
there seems to be no ready-made structure to store different types of data (usually we will define the structure ourselves).
176176
But the flaw of `std::pair` is obvious, only two elements can be saved.
177177

178178
### Basic Operations

book/en-us/05-pointers.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ These smart pointers include `std::shared_ptr`/`std::unique_ptr`/`std::weak_ptr`
2626
2727
## 5.2 `std::shared_ptr`
2828

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.
3030

3131
But not enough, because using `std::shared_ptr` still needs to be called with `new`, which makes the code a certain degree of asymmetry.
3232

@@ -133,12 +133,12 @@ int main() {
133133
134134
// p2 is empty, no prints
135135
if(p2) p2->foo();
136-
std::cout << "p2 was destroied" << std::endl;
136+
std::cout << "p2 was destroyed" << std::endl;
137137
}
138138
// p1 is not empty, prints
139139
if (p1) p1->foo();
140140
141-
// Foo instance will be destroied when leaving the scope
141+
// Foo instance will be destroyed when leaving the scope
142142
}
143143
```
144144
@@ -157,14 +157,14 @@ class A {
157157
public:
158158
std::shared_ptr<B> pointer;
159159
~A() {
160-
std::cout << "A was destroied" << std::endl;
160+
std::cout << "A was destroyed" << std::endl;
161161
}
162162
};
163163
class B {
164164
public:
165165
std::shared_ptr<A> pointer;
166166
~B() {
167-
std::cout << "B was destroied" << std::endl;
167+
std::cout << "B was destroyed" << std::endl;
168168
}
169169
};
170170
int main() {
@@ -177,9 +177,9 @@ int main() {
177177
}
178178
```
179179
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:
181181
182-
![Figure 5.1](../../assets/figures/pointers1.png)
182+
![Figure 5.1](../../assets/figures/pointers1_en.png)
183183
184184
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:
185185

book/en-us/07-thread.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ C++11 introduces a class related to `mutex`, with all related functions in the `
3535
It can be locked by its member function `lock()`, and `unlock()` can be unlocked.
3636
But in the process of actually writing the code, it is best not to directly call the member function,
3737
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.
3939

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.
4141

4242
```cpp
4343
#include <iostream>
@@ -156,7 +156,7 @@ The condition variable `std::condition_variable` was born to solve the deadlock
156156
For example, a thread may need to wait for a condition to be true to continue execution.
157157
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.
158158
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;
160160
`notify_all()` is to notify all threads. Below is an example of a producer and consumer model:
161161

162162
```cpp
@@ -253,7 +253,7 @@ int main() {
253253
}
254254
```
255255

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.
257257
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.
258258
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.
259259
Cause `a = 5` to occur after `flag = 1`. Thus `b` may output 0.

book/zh-cn/07-thread.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ C++11 引入了 `mutex` 相关的类,其所有相关的函数都放在 `<mutex
3535
而通过其成员函数 `lock()` 可以进行上锁,`unlock()` 可以进行解锁。
3636
但是在在实际编写代码的过程中,最好不去直接调用成员函数,
3737
因为调用成员函数就需要在每个临界区的出口处调用 `unlock()`,当然,还包括异常。
38-
这时候 C++11 还为互斥量提供了一个 RAII 语法的模板类 `std::lock_gurad`
38+
这时候 C++11 还为互斥量提供了一个 RAII 语法的模板类 `std::lock_guard`
3939
RAII 在不失代码简洁性的同时,很好的保证了代码的异常安全性。
4040

4141
在 RAII 用法下,对于临界区的互斥量的创建只需要在作用域的开始部分,例如:

code/5/5.2.unique.ptr.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ int main() {
4141

4242
// p2 is empty, no prints
4343
if(p2) p2->foo();
44-
std::cout << "p2 was destroied" << std::endl;
44+
std::cout << "p2 was destroyed" << std::endl;
4545
}
4646
// p1 is not empty, prints
4747
if (p1) p1->foo();
4848

49-
// Foo instance will be destroied when leaving the scope
49+
// Foo instance will be destroyed when leaving the scope
5050
}

code/5/5.3.weak.ptr.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ class A {
1818
public:
1919
std::shared_ptr<B> pointer;
2020
~A() {
21-
std::cout << "A was destroied" << std::endl;
21+
std::cout << "A was destroyed" << std::endl;
2222
}
2323
};
2424
class B {
2525
public:
2626
std::shared_ptr<A> pointer;
2727
~B() {
28-
std::cout << "B was destroied" << std::endl;
28+
std::cout << "B was destroyed" << std::endl;
2929
}
3030
};
3131
int main() {

exercises/7/7.1/thread_pool.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ decltype(auto) ThreadPool::enqueue(F&& f, Args&&... args) {
109109
{
110110
std::unique_lock<std::mutex> lock(queue_mutex);
111111

112-
// avoid add new thread if theadpool is destroied
112+
// avoid add new thread if theadpool is destroyed
113113
if(stop)
114114
throw std::runtime_error("enqueue on stopped ThreadPool");
115115

0 commit comments

Comments
 (0)