引言 打开浏览器,在地址栏输入URL,回车,出现网页内容。整个过程发生了什么?其中的原理是什么?以下进行整理和总结。 整个过程可以概括为几下几个部分: 正文 下面详细介绍其中的原理: 1. 域名解析成IP地址 访问目标地址有两种方式: ①使用目标IP地址访问。由于IP地址是一堆数字不方便记忆,于是有 ...
分类:
Web程序 时间:
2018-06-09 19:47:04
阅读次数:
339
Wide character logging Log库支持记录包含不同national characters的字符串。基本上有两种方法可以做到这一点。在类unix系统中,通常使用多字节字符编码(例如UTF 8)来表示national characters。在这种情况下,Log库可以像普通ASCII日 ...
分类:
其他好文 时间:
2018-06-09 19:46:57
阅读次数:
228
1:appendToFile追加文件至目标文件末尾。 $>hadoop fs -appendToFile text111.txt /spaceQuota/text.txt 2:getmerge合并文件 $>hadoop fs -getmerge -nl /spaceQuota textmerge.t ...
分类:
其他好文 时间:
2018-06-09 19:46:48
阅读次数:
140
1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #include 9 10 #define Faster ios::sync_with_stdio(false),cin.tie(0) 11 ... ...
分类:
其他好文 时间:
2018-06-09 19:46:38
阅读次数:
134
主要内容: 一、表格标签 -- table 二、表单标签 -- form 三、常用标签属性和分类 四、标签嵌套规则 1?? 表格标签 -- table 主要标签如下图所示: 示例如下: <! DOCTYPE html> <html lang="en"> <head> <meta charset="u ...
分类:
Web程序 时间:
2018-06-09 19:46:28
阅读次数:
214
1.准备工具 (1)一块stm32板,我用的是芯片型号是stm32L151C8T6; (2)keil5软件,可以到官网下载:https://www.keil.com/download/product/ ,也可以直接下载网友的版本,我这里用的是keil5.15版本; (3)stm32L1芯片包,到官网 ...
分类:
其他好文 时间:
2018-06-09 19:46:21
阅读次数:
353
一、何为动态代理? 建议看动态代理前,先看看反射 点击这里 先看一个小案例,假设有咖啡类A,B,C。有添加物类a,b,c,。现在对咖啡类进行增强。( 比如像向啡中加糖,牛奶等这个意思)。 对一个类进行增强可以有三种方式: 1.继承,可以直接继承父类的属性和方法,在新增自己的属性和方法。那么我们对每种 ...
分类:
编程语言 时间:
2018-06-09 19:46:11
阅读次数:
198
1069 The Black Hole of Numbers (20)(20 分) For any 4-digit integer except the ones with all the digits being the same, if we sort the digits in non-inc ...
分类:
其他好文 时间:
2018-06-09 19:46:01
阅读次数:
160
编译和运行 gcc -E test.c -o test.i 这里的-E表示预编译,-o表示 指定新文件的的名字 gcc -S test.i -o test.s 这里开始编译成汇编文件 gcc -c test.s -o test.o 生成二进制文件 gcc test.o -o testApp 链接文件 ...
分类:
其他好文 时间:
2018-06-09 19:45:44
阅读次数:
192
去面试,面试官问,说一下spring事务的几种隔离级别,你项目用的是哪个。一脸茫然,之后...... Spring事务: 什么是事务: 事务逻辑上的一组操作,组成这组操作的各个逻辑单元,要么一起成功,要么一起失败. 事务特性(4种): 原子性 (atomicity):强调事务的不可分割. 一致性 ( ...
分类:
编程语言 时间:
2018-06-09 19:45:35
阅读次数:
275
/*dialect*/with tab1 as(select distinct entry.FManuBillID manuOrderId, sum(entry.fqty) qty--良品入库数量 from t_im_manufacturerecbill bill inner join t_im_m ...
分类:
数据库 时间:
2018-06-09 19:45:26
阅读次数:
246
对慢SQL优化一般可以按下面几步的思路: 1、开启慢查询日志,设置超过几秒为慢SQL,抓取慢SQL 2、通过explain对慢SQL分析(重点) 3、show profile查询SQL在Mysql服务器里的执行细节和生命周期情况(重点) 4、对数据库服务器的参数调优 一、慢查询日志 1、设置慢查询 ...
分类:
数据库 时间:
2018-06-09 19:45:18
阅读次数:
191
wx.Frame (parent, id, title, pos, size, style, name) id:窗口标识。通常-1为了让标识符自动生成 style:窗口的外观按样式风格常数控制示例:window = wx.Frame(None, -1, “Hello”, pos = (10,10), ...
分类:
其他好文 时间:
2018-06-09 19:45:10
阅读次数:
132
MySQL 8.0.11已发布,听闻性能提升两倍,今个自己安装体验下。1、卸载mysql老版本rpm -qa|grep mysql或者mairadbrpm -e mysql*/mariadb*rpm -e --nodeps mysql*/mariadb* 2、安装依赖包yum install gcc ...
分类:
数据库 时间:
2018-06-09 19:45:02
阅读次数:
318
求解\(\sum_{i = 1}^{n}\sum_{j = 1}^{m}lcm\left ( i,j \right )\)。 有\(lcm\left ( i,j \right )=\frac{ij}{gcd\left ( i,j \right )}\), 所以原本的式子转化为:\(\sum_{i = ...
分类:
其他好文 时间:
2018-06-09 19:44:54
阅读次数:
143
远程测试服务器创建git仓库,以便协作开发 1.远程服务器登录,新增用户 test 并为test设置密码 adduser test 输入两次密码,并确认用户 切换用户为 test 并切换到用户根目录 su test cd 2.设置 ssh免密登录 确保ssh 已安装 ssh-keygen -t rs ...
分类:
其他好文 时间:
2018-06-09 19:44:46
阅读次数:
214
服务端安装SVN (CentOS)1、yum install subversion2、svn的相关配置 1> 创建一个SVN仓库(所有的项目存放与管理) mkdir -p /svndata/SLSaleSystem 2> 创建项目 svnadmin create /svndata/SLSaleSys ...
分类:
其他好文 时间:
2018-06-09 19:44:37
阅读次数:
157