计算机硬件-CPU和内存

$. 参考

  1. Computer memory

阅读全文

JVM-0.学习目录

学习目录

  • class文件的加载和其对应的 Class 对象的创建过程

    类加载机制

    对象模型的实现

阅读全文

JVM-jamvm编译安装

编译环境

操作系统 centos6.8

  1. 调用 auotgen 脚本

  2. autoconf2.1

阅读全文

JVM-使用HSDB查看jvm运行时情况

0. 准备实验环境

0.1 源码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
public class Test {

public static void main(String[] args) {
int a = 1;
int b = 1;

Test t = new Test();

int c = t.add(a, b);

System.out.println(c);
}

public int add(int a, int b){
return a + b;
}
}

阅读全文

java基础-注解

注解的类型

An annotation type declaration is a special kind of interface declaration. To distinguish an annotation type declaration from an ordinary interface declaration, the keyword interface is preceded by an at-sign (@).

阅读全文

angularjs

$. 参考

  1. 文档

阅读全文

2016-年终总结

北京我来了

2016年2月13日,农历正月初六,我坐上火车一路向北。经过16个小时的长途颠簸,终于在第二天早晨10点到达北京。

下火车,出站,北京天气还是比较冷。

阅读全文

network-URLConnection

1. URLConnection 对象的创建过程

摘自 rfc7230

阅读全文

pinpoint-数据结构

pinpoint 的业务对象(BO)在 pinpoint-commons-server 工程中。hbase 中每一个表都对应其中的一个类。

例如:AgentEvent 表,对应于 AgentEventBo 类。

pinpoint-commons-server 中的 BO 类,是被 web 和 collector 所共享的,对于 collector 来说,它执行插入操作,所以其 dao 层的 AgentEventDao 提供了 void insert(AgentEventBo agentEventBo); 方法。

阅读全文

network-AsynchronousSocketChannel

AsynchronousServerSocketChannel 和 AsynchronousSocketChannel 的实现借助于 AsynchronousChannelGroup 的线程池,当执行一个异步的时候,可以将这个异步操作提交到 AsynchronousChannelGroup 的线程池中。

阅读全文