Skip to content

Commit

Permalink
更新一些简单说明
Browse files Browse the repository at this point in the history
  • Loading branch information
ruyuejun committed Jan 11, 2020
1 parent 84a30c3 commit 8017dda
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
14 changes: 14 additions & 0 deletions 01-基础语法/05-运算符.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,20 @@ i++ // 正确用法

## 计算机运算原理

计算机常见的术语
- bit比特代表1个二进制位一个位只能是0或者1
- Byte字节代表8个二进制位计算机中存储的最小单元是字节
- WORD双字节即2个字节16
- DWORD两个WORD即4个字节32

一些常用单位
- 1b1bit1
- 1Kb1024bit即1024位
- 1Mb1024*1024bit
- 1B1Byte1字节8
- 1KB1024B
- 1MB1024K

对于有符号数而言二进制的最高为是符号位0表示正数1表示负数比如 1在二进制中
```
1 二进制位:0000 0001
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
## 笔记说明

这份笔记是自学`Golang`时的资料总结结合了很多书籍博客以及开源作品的内容同时也收到了很多反馈和建议笔记仍然会在学习旅程中不断更新绝对不鸽

基于Go的算法笔记一样计划之列不过算法过于庞大被独立放置在了[overnote](https://github.com/overnote/over-algorithm)系列中自成一系。

## Go学习路径图
Expand Down

0 comments on commit 8017dda

Please sign in to comment.