-
Notifications
You must be signed in to change notification settings - Fork 68
Open
Description
Lines 256 to 269 in 8119e85
```cpp | |
char c = 0; | |
bool b = *(bool *)&c; // 可以,b = false | |
``` | |
```cpp | |
char c = 1; | |
bool b = *(bool *)&c; // 可以,b = true | |
``` | |
```cpp | |
char c = 2; | |
bool b = *(bool *)&c; // 未定义行为 | |
``` |
这里“可以”的代码实际上也是错误的,应该换别的写法。
Metadata
Metadata
Assignees
Labels
No labels