摘要:
Important MySQL Community 5.7 Server requires the Microsoft Visual C++ 2013 Redistributable Package to run on Windows platforms. Users should make sur 阅读全文
摘要:
清空控制台 console.clear() 打印 JavaScript 对象 Object.getOwnPropertyDescriptor() 方法返回指定对象上一个自有属性对应的属性描述符。(自有属性指的是直接赋予该对象的属性,不需要从原型链上进行查找的属性) Object.keys() 方法会 阅读全文
摘要:
1. Gradle Build File 示例引用 Spring 实战(第 4 版)第 1 章 Spring 之旅 https://github.com/habuma/spring-in-action-4-samples /Users/wuyong/spring git clone https:// 阅读全文
摘要:
rpm -ivh jdk-8u311-linux-x64.rpm Install OpenJDK 8 Install OpenJDK 8 JRE sudo yum install java-1.8.0-openjdk Install OpenJDK 8 JDK sudo yum install ja 阅读全文
摘要:
diskpart list disk select disk 1 clean create partition primary list partition select partition 1 active format fs=fat32 quick or format fs=ntfs quick 阅读全文
摘要:
[toc] hello 程序: 跟踪 hello 程序的生命周期:从它被程序员创建开始,到在系统上运行,输出简单的消息,然后终止。 1.1 信息就是位+上下文 1 hello 程序的生命周期是从一个源程序开始,文件名是 。源程序实际上就是一个由值 0 和 1 组成的位序列,8 个位被组织成一组,称为 阅读全文
摘要:
[toc] Figure 1: Internals of a 2.5 inch SATA hard disk drive 从磁盘上读信息的时间为毫秒级,从 DRAM 读比从磁盘读快 10 万倍,从 SRAM 读比从磁盘读快 100 万倍。 磁盘结构 Figure 2: Cylinder Head S 阅读全文
摘要:
[toc] 数量级(时间) 纳秒(ns):$10^{ 9}$ 秒 1 纳秒 1GHz 的 CPU 的时钟周期,该周期的无线电波波长 0.3 米。 3.3 纳秒 光传播一米所使用的时间。 微秒(µs):$10^{ 6}$ 秒 1 微秒(microsecond)即 1000 纳秒。 1 微秒 商业高速频 阅读全文
摘要:
select 查询时的两个顺序: 关键字的顺序是不能颠倒的: select ... from ... where ... group by ... having ... order by ... 子句 说明 是否必须使用 select 要返回的列或表达式 是 from 从中检索数据的表 仅在从表选择 阅读全文