摘要:
NAT: network address translation -motivation: local network uses just one IP address as far as outside world is concerned. -implementation: NAT router 阅读全文
posted @ 2021-05-24 19:51
胡糊糊同学
阅读(43)
评论(0)
推荐(0)
摘要:
方法 1:通过 Scanner Scanner input = new Scanner(System.in); String s = input.nextLine(); input.close(); Copy to clipboardErrorCopied 方法 2:通过 BufferedReade 阅读全文
posted @ 2021-05-24 19:50
胡糊糊同学
阅读(470)
评论(0)
推荐(0)
摘要:
--Use the NOT keyword to select all records where City is NOT "Berlin" SELECT * FROM Customers WHERE NOT City = ‘Berlin‘; --通配符 _ --Select all records 阅读全文
posted @ 2021-05-24 19:49
胡糊糊同学
阅读(66)
评论(0)
推荐(0)
摘要:
转载:https://www.cnblogs.com/gaochundong/p/data_structures_and_asymptotic_analysis.html 阅读全文
posted @ 2021-05-24 19:47
胡糊糊同学
阅读(34)
评论(0)
推荐(0)
摘要:
转载:https://zhuanlan.zhihu.com/p/69462736 阅读全文
posted @ 2021-05-24 19:45
胡糊糊同学
阅读(26)
评论(0)
推荐(0)
摘要:
转载:https://zhuanlan.zhihu.com/p/69462736 阅读全文
posted @ 2021-05-24 19:43
胡糊糊同学
阅读(29)
评论(0)
推荐(0)
摘要:
two types of links: 1. point to point 2.broadcast(shared wire or medium) -Multiple access protocol: distributed algorithm that determines how nodes sh 阅读全文
posted @ 2021-05-24 19:42
胡糊糊同学
阅读(89)
评论(0)
推荐(0)
摘要:
转载:https://www.cnblogs.com/kismetv/p/10331633.html 阅读全文
posted @ 2021-05-24 19:40
胡糊糊同学
阅读(35)
评论(0)
推荐(0)
摘要:
-Parity Checking ( odd/even parity ) single bit parity two-dimensional bit parity -Checksum -CRC cyclic redundancy check view data bits, D, as a binar 阅读全文
posted @ 2021-05-24 19:39
胡糊糊同学
阅读(67)
评论(0)
推荐(0)
摘要:
ARP: address resolution protocol 地址解析协议,用于实现从 IP 地址到 MAC 地址的映射,即询问目标IP对应的MAC地址。 一般情况下,上层应用程序更多关心IP地址而不关心MAC地址,所以需要通过ARP协议来获知目的主机的MAC地址,完成数据封装。 -ARP ta 阅读全文
posted @ 2021-05-24 19:36
胡糊糊同学
阅读(80)
评论(0)
推荐(0)