Skip to content

Commit

Permalink
Fix typo and update cpp content
Browse files Browse the repository at this point in the history
  • Loading branch information
linkwk7 committed Jun 26, 2019
1 parent be18abd commit b3a203c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,7 @@ int main()

* `public` 成员:可以被任意实体访问
* `protected` 成员:只允许被子类及本类的成员函数访问
* `private` 成员:只允许被本类的成员函数访问
* `private` 成员:只允许被本类的成员函数、友元类或友元函数访问

### 继承

Expand Down Expand Up @@ -2032,7 +2032,7 @@ int main()

#### 网络字节序

网络字节顺序是 TCP/IP 中规定好的一种数据表示格式,它与具体的 CPU 类型、操作系统等无关,从而可以保重数据在不同主机之间传输时能够被正确解释
网络字节顺序是 TCP/IP 中规定好的一种数据表示格式,它与具体的 CPU 类型、操作系统等无关,从而可以保证数据在不同主机之间传输时能够被正确解释

网络字节顺序采用:大端(Big Endian)排列方式。

Expand Down

0 comments on commit b3a203c

Please sign in to comment.