Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
scu-zzy committed Jul 15, 2020
1 parent c77b902 commit 8ab738f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
4 changes: 4 additions & 0 deletions 操作系统与Java并发/操作系统.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@

因为需要频繁地在用户态和核心态之间进行切换,所以会有一定的性能损失。

> 内核态:cpu可以访问内存的所有数据,包括外围设备,例如硬盘,网卡,cpu也可以将自己从一个程序切换到另一个程序。
>
> 用户态:只能受限的访问内存,且不允许访问外围设备,占用cpu的能力被剥夺,cpu资源可以被其他程序获取。
## 中断分类

### 外中断
Expand Down
10 changes: 10 additions & 0 deletions 计算机网络与Java网络/计算机网络.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,16 @@ FTP 使用 TCP 进行连接,它需要两个连接来传送一个文件:
- 控制连接:服务器打开端口号 21 等待客户端的连接,客户端主动建立连接后,使用这个连接将客户端的命令传送给服务器,并传回服务器的应答。
- 数据连接:20端口用来传送一个文件数据。

## HTTP与FTP的异同 ##

1、同:应用层协议,基于TCP。

2、异:

- HTTP是超文本传输协议,面向网页的;FTP是文本传输协议,面向文件的。
- 端口号,HTTP:80,FTP:21,20
- FTP控制信息带外传送,HTTP控制信息带内传送。

## 动态主机配置协议-DHCP ##

DHCP (Dynamic Host Configuration Protocol) 提供了即插即用的连网方式,用户不再需要手动配置 IP 地址等信息。
Expand Down

0 comments on commit 8ab738f

Please sign in to comment.