Update README.md

This commit is contained in:
xliu79 2020-07-19 15:58:34 +08:00 committed by GitHub
parent 4779d5de55
commit 2ff9a4a640
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,29 +1,28 @@
# decltype那些事
# Things about decltype
## 关于作者
## About Author
个人公众号:
![](../img/wechat.jpg)
## 1.基本使用
decltype的语法是:
## 1.Basic
The syntax of decltype is:
```
decltype (expression)
```
这里的括号是必不可少的,decltype的作用是“查询表达式的类型”因此上面语句的效果是返回 expression 表达式的类型。注意decltype 仅仅“查询”表达式的类型,并不会对表达式进行“求值”。
Brackets are essential here.The function of decltype is "the type of query expression".Therefore, the effect of the above statement is to return the type of the expression expression.Note that decltype only "queries" the type of the expression and does not "evaluate" the expression.
### 1.1 推导出表达式类型
### 1.1 Deduce expression type
```
int i = 4;
decltype(i) a; //推导结果为int。a的类型为int。
decltype(i) a; //The result is int. The type of a is int
```
### 1.2 与using/typedef合用用于定义类型。
### 1.2 Used with using / typedef to define types.
```c++
using size_t = decltype(sizeof(0));//sizeof(a)的返回值为size_t类型
@ -37,11 +36,12 @@ for (vectype i = vec.begin; i != vec.end(); i++)
}
```
这样和auto一样也提高了代码的可读性。
like auto, improves the readability of the code.
### 1.3 重用匿名类型
在C++中,我们有时候会遇上一些匿名类型,如:
### 1.3 Reuse anonymous types
In C + +, we sometimes encounter some anonymous types, such as:
```c++
struct
@ -51,15 +51,13 @@ struct
}anon_s;
```
而借助decltype我们可以重新使用这个匿名的结构体
With decltype, we can reuse this anonymous structure:
```c++
decltype(anon_s) as ;//定义了一个上面匿名的结构体
decltype(anon_s) as ;//Defines an anonymous structure above
```
### 1.4 泛型编程中结合auto用于追踪函数的返回值类型
### 1.4 In generic programming, auto is used to trace the return value type of function
这也是decltype最大的用途了。
```c++
template <typename T>
@ -69,24 +67,26 @@ auto multiply(T x, T y)->decltype(x*y)
}
```
完整代码见[decltype.cpp](decltype.cpp)
Code[decltype.cpp](decltype.cpp)
## 2.判别规则
## 2.Discriminant rules
对于decltype(e)而言,其判别结果受以下条件的影响:
如果e是一个没有带括号的标记符表达式或者类成员访问表达式那么的decltypee就是e所命名的实体的类型。此外如果e是一个被重载的函数则会导致编译错误。
否则 假设e的类型是T如果e是一个将亡值那么decltypee为T&&
否则假设e的类型是T如果e是一个左值那么decltypee为T&
否则假设e的类型是T则decltypee为T。
标记符指的是除去关键字、字面量等编译器需要使用的标记之外的程序员自己定义的标记,而单个标记符对应的表达式即为标记符表达式。例如:
For decltype (E), the results are affected by the following conditions:
If e is a marker expression or class member access expression without parentheses, decltype (E) of is the type of entity named by E.In addition, if e is an overloaded function, it will result in compilation errors.
Otherwise, assume that the type of E is t, and if e is a dying value, then decltype (E) is t&&
Otherwise, assume that the type of E is t, and if e is a dying value, then decltype (E) is t&&
Otherwise, assuming that the type of E is t, decltype (E) is t.
Markers are defined by programmers except for keywords, literals and other tags that the compiler needs to use. The expression corresponding to a single marker is a marker expression. For example:
```c++
int arr[4]
```
则arr为一个标记符表达式而arr[3]+0不是。
Then arr is a marker expressionranther than arr[3]+0
举例如下:
Example
```c++
int i = 4;
@ -94,11 +94,11 @@ int arr[5] = { 0 };
int *ptr = arr;
struct S{ double d; }s ;
void Overloaded(int);
void Overloaded(char);//重载的函数
void Overloaded(char);// reload function
int && RvalRef();
const bool Func(int);
//规则一:推导为其类型
//Rule 1: derivation is its type
decltype (arr) var1; //int 标记符表达式
decltype (ptr) var2;//int * 标记符表达式
@ -111,11 +111,11 @@ decltype(s.d) var3;//doubel 成员访问表达式
decltype (RvalRef()) var5 = 1;
//规则三:左值,推导为类型的引用。
//规则三:Lvalue, derived as a reference to the type
decltype ((i))var6 = i; //int&
decltype (true ? i : i) var7 = i; //int& 条件表达式返回左值。
decltype (true ? i : i) var7 = i; //int& A conditional expression returns an lvalue
decltype (++i) var8 = i; //int& ++i返回i的左值。
@ -126,7 +126,7 @@ decltype(*ptr)var10 = i;//int& *操作返回左值
decltype("hello")var11 = "hello"; //const char(&)[9] 字符串字面常量为左值且为const左值。
//规则四:以上都不是,则推导为本类型
//Rule 4: if none of the above is true, this type is derived
decltype(1) var12;//const int
@ -135,4 +135,4 @@ decltype(Func(1)) var13=true;//const bool
decltype(i++) var14 = i;//int i++返回右值
```
学习参考https://www.cnblogs.com/QG-whz/p/4952980.html
Fromhttps://www.cnblogs.com/QG-whz/p/4952980.html