NAT网络地址转换技术 目录 一、NAT概述 1.1、概述 1.2、NAT 的应用场景 二、NAT的类型及配置命令 2.1、静态NAT 2.2、动态NAT 2.3、Easy IP 2.4、NATP 2.5、NAT Server 一、NAT概述 1、概述 1)随着Internet 的发展和网络应用的增 ...
分类:
其他好文 时间:
2021-06-02 12:39:00
阅读次数:
0
看代码: 1 int cal(int n) { 2 int sum = 0; 3 int i = 1; 4 for (; i <= n; ++i) { 5 sum = sum + i; 6 } 7 return sum; 8 } 从cpu角度来看,这段代码每一行都执行类似操作 读数据-运算-写数据 ...
分类:
编程语言 时间:
2021-06-02 12:25:48
阅读次数:
0
查空行 awk '/^$/{print NR}' demo1.txt 求某一列的和 awk '{sum+=$2} END {print "求和:"sum}' demo2.txt 数字排序 sort -n -t ' ' -k 2 demo3.txt sort -t ' ' -k 2nr demo3.t ...
分类:
系统相关 时间:
2021-06-02 11:35:11
阅读次数:
0
js代码如下: //点击导航 $("#col-md-12_1621671164153 a").click(function(event){ event.preventDefault(); $(this).addClass("activeCur").siblings().removeClass("ac ...
1.添加官方的GitLab存储库 1 curl -L "https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.rpm.sh" | sudo bash 2.安装 1 export GITLAB_RUNN ...
分类:
其他好文 时间:
2021-06-02 10:56:12
阅读次数:
0
6.7 中介者模式 6.7.1 概述 一般来说,同事类之间的关系是比较复杂的,多个同事类之间互相关联时,他们之间的关系会呈现为复杂的网状结构,这是一种过度耦合的架构,即不利于类的复用,也不稳定。例如在下左图中,有六个同事类对象,假如对象1发生变化,那么将会有4个对象受到影响。如果对象2发生变化,那么 ...
分类:
其他好文 时间:
2021-06-02 10:45:47
阅读次数:
0
第18章 类集框架 18.1 Java类集框架 18.2 Colloection集合接口 18.3 List集合 18.4 Set集合 18.5 集合输出 18.6 Map集合 18.7 Stack栈 18.8 Queue队列 18.9 Properties属性操作 18.10 Collection ...
分类:
编程语言 时间:
2021-06-02 10:43:05
阅读次数:
0
for i in range(100, 1000): if str(i) == str(i)[::-1]: print(i) # 输出结果 101 111 121 131 141 151 161 171 181 191 202 212 222 232 242 252 262 272 282 292 ...
分类:
编程语言 时间:
2021-05-25 18:16:06
阅读次数:
0
题目:https://codeforc.es/contest/1529 A. Eshag Loves Big Arrays 题意:略 题解:发现随便取两个不同的数,一定可以删掉大的那个数。所以最后留下的肯定是最小的所有数。 #include<iostream> #include<algorithm> ...
分类:
其他好文 时间:
2021-05-25 18:14:45
阅读次数:
0
C# 获取GUID using System; namespace GUID测试 { class Program { static void Main(string[] args) { //产生一个新的GUID并输出 Console.WriteLine(System.Guid.NewGuid()); ...