Skip to content

Commit

Permalink
Merge pull request huihut#46 from linkwk7/Content_update
Browse files Browse the repository at this point in the history
Fix typo and update cpp content
  • Loading branch information
huihut authored Jun 26, 2019
2 parents be18abd + b3a203c commit 14d71d8
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 14d71d8

Please sign in to comment.