自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

原创 volatile

作用JAVA先写个Demopackage demo;public class VolatileDemo { static volatile int value = 0; public static void main(String[] args) { value = 1; System.out.println(value); }}关键就看对value的读写;字节码javap反编译一下0: iconst_1 .

2021-03-07 22:49:08 144 1

原创 hashmap

put // table是保存在全局的数组 // Node是table中的元素,一个key对应一个Node final V putVal(int hash, K key, V value, boolean onlyIfAbsent, boolean evict) { //tab就是数组,n是数组长度 Node<K,V>[] tab; Node<K,V> p; int n, i;

2021-03-05 13:51:47 114 2

原创 Linux Kernel :: Boot Process

bootloader Today Linux kernel has to be booted by bootloaders like GRUB2. They are all designed following boot protocol. header.S The header.S includes legacy boot sector and setup code. Bootloader...

2018-03-19 20:41:03 467

原创 Zircon building tutorial

Zircon building tutorial

2017-10-05 20:38:33 1065

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除