1.一个典型的CPU由运算器,控制器,寄存器(CPU工作原理)等器件构成,这些器件靠内部总线相连。 2.不同的CPU,寄存器的个数,结构是不相同的。8086CPU有14个寄存器: AX,BX,CX,DX(通用寄存器),SI,DI,SP,BP(基址和变址寄存器),CS,SS,DS,ES(段寄存器),I ...
分类:
其他好文 时间:
2018-09-24 17:18:45
阅读次数:
171
You are given two strings ss and tt, both consisting only of lowercase Latin letters. The substring s[l..r]s[l..r] is the string which is obtained by ...
分类:
其他好文 时间:
2018-09-24 11:23:55
阅读次数:
202
You are given a string ss. You should answer nn queries. The ii-th query consists of integer kiki and string mimi. The answer for this query is the mi ...
分类:
其他好文 时间:
2018-09-23 22:23:31
阅读次数:
266
Oracle 插入时间时 报错:ORA-01861: 文字与格式字符串不匹配 的解决办法 解决方法: 这个错误一般出现在时间字段上,即你插入的时间格式和数据库现有的时间格式不一致,解决的方法是格式化你的时间: to_date('#{}','yyyy-mm-dd hh24:mi:ss') 如:如果直接 ...
分类:
数据库 时间:
2018-09-21 17:39:55
阅读次数:
196
1. SPI(Serial Peripheral Interface)串行外设接口,是一种高速的、全双工、同步的通信总线。采用主从模式(Master Slave)架构,支持多个slave,一般仅支持单Master。 2. SPI接口共有4根信号线,分别是:设备选择线(SS)、时钟线(SCK)、串行输 ...
分类:
其他好文 时间:
2018-09-19 01:21:40
阅读次数:
201
# [sshw](https://github.com/yinheli/sshw)[](https://travis-ci.org/yinheli/sshw)ss... ...
分类:
系统相关 时间:
2018-09-18 23:55:45
阅读次数:
858
首先创建两个虚拟机 一个设为服务端 一个设为客户端 2.服务端: | yum install nfs* |--yum list | grep nfs 查看端口 |--ss -tunmlp | grep nfs |--cat /etc/services | grep nfs |-- ss -tnmlp ...
分类:
其他好文 时间:
2018-09-18 11:11:37
阅读次数:
182
1 string ss="jessie"; 2 int main() 3 { 4 scanf("%d",&t); 5 sort(ss.begin(),ss.end()); 6 while(t--){ 7 string s; 8 cin>>s; 9 for(int i=0;i='A'&&s[i]<='... ...
分类:
其他好文 时间:
2018-09-15 18:15:53
阅读次数:
146
时间相关工具类 public class DateUtil { private DateUtil(){} /** * 枚举日期格式 */ public enum DatePattern{ /** * 格式:"yyyy-MM-dd HH:mm:ss" */ ALL_TIME{publ... ...
分类:
移动开发 时间:
2018-09-14 18:24:57
阅读次数:
180
简单的来说:SSL是安全传输的一种安全协议,SSH只是在传输的时候为了防止"中间人"篡改数据而提供的安全的"通道" 在使用的时候我们只关心传输数据的安全性,那么在对于传输层和应用层,在数据请求返回的时候就存在安全性的问题: 1."中间人"篡改数据,并且可以伪装为服务器提供给客户端数据 由此就有了SS ...
分类:
其他好文 时间:
2018-09-11 19:44:27
阅读次数:
227