Reference思考
原写于 2010-12-18
一. Java数据类型
数据类型就是对内存位置的抽象表达(很多编程语言都依赖于特定的计算机类型和对数据类型属性的具体编译实现,比如word和integer数据类型的大小等;Java通过JVM保证数据所占存储空间的大小不会随硬件的改变发生变化)。
1.Primitive data type :A primitive type is predefined by the language and is named by a reserved keyword. Primitive values do not share state with other primitive values. The eight primitive data types supported by the Java programming language。
原生类型是语言自身预先定义的,原生值不会与其他原生值共享状态。有8中原生类型被Java语言支持,如下:byte(8位)、short(16位)、int(32位)、long(64位)、float(浮点数,32位)、double(浮点数,64位)、boolean(1位,只有true或false可取)、char(16-bit Unicode character)
2.复杂数据类型
运行期动态创建,一切皆为对象。
- 接口(定义行为)
- 类(String objects are immutable, which means that once created, their values cannot be changed.)
- 数组
- 引用(软、弱、虚引用)
二. Reference分类
1. strong Reference :正常情况下的引用都属于strong引用,如:String str = new String();str是strong reference。其它引用必须是显式的声明,如:SoftReference softRef = new SoftReferencne(str),softRef是弱引用。
2. SoftReference :软引用。在内存溢出前,垃圾收集器将回收其引用的对象。
3. WeakReference :弱引用。任何垃圾回收,扫描到弱引用时,其引用的对象都会被回收。
4. PhantomReference :不理解。
Reference queues, to which registered reference objects are appended by the garbage collector after the appropriate reachability changes are detected.
当某个引用对象的可达性被垃圾搜集器改变或清除后,会被放入对应的 ReferenceQueue 中(如果注册引用队列)。
String str = new String("hello");
ReferenceQueue<String> refQuence = new ReferenceQueue<String>();
SoftReference<String> softRef = new SoftReference<String>(str, refQuence);
str = null; // 垃圾回收
如上例:当“hello”对象被收回后,则softRef会被加入到ReferenceQueue。
三.WeakHashMap简单分析
简化WeakHashMap结构: class WeakHashMap<K, V> { private final ReferenceQueue<K> queue = new ReferenceQueue<K>(); private Entry[] table; private static class Entry<K,V> extends WeakReference<K> implements Map.Entry<K,V> {} } 分析:WeakHashMap的put方法(Map对数据的保存也是通过数组实现) public V put(K key, V value) { K k = (K) maskNull(key); int h = HashMap.hash(k.hashCode()); Entry[] tab = getTable(); //获取table(关键:调用expungeStaleEntries方法,清洗table数组中,value所指的实际对象已被GC) int i = indexFor(h, tab.length); //根据key.hash计算在数组的位置 //从此位置开始,遍历单向链表,判断此位置是否已经存在相同元素 //1.有,更新为value //2.无,创建新的对象,置原头部元素为自己的next,让自身为单向链表头部 for (Entry<K,V> e = tab[i]; e != null; e = e.next) { //如果hash相等,且equals相等 if (h == e.hash && eq(k, e.get())) { V oldValue = e.value; if (value != oldValue) e.value = value; return oldValue; } } modCount++; Entry<K,V> e = tab[i]; //queue是ReferenceQueue,h自身key计算得到的hash值,e指向单链表下一个节点next tab[i] = new Entry<K,V>(k, value, queue, h, e); if (++size >= threshold) //判断数组容量是否需要扩充,策略:2倍 resize(tab.length * 2); return null; } /* * 清洗已被gc对象的引用,释放数组的容量 */ private void expungeStaleEntries() { Entry<K,V> e; while ( (e = (Entry<K,V>) queue.poll()) != null) { //从队列获取第一个加入ReferenceQueue的引用,循环 int h = e.hash; int i = indexFor(h, table.length); Entry<K,V> prev = table[i]; Entry<K,V> p = prev; while (p != null) { //检查单链表的数据是否已陈旧,清洗 Entry<K,V> next = p.next; if (p == e) { //若相等,说明引用的对象已被gc if (prev == e) table[i] = next; else prev.next = next; //因为其引用对象被垃圾收集器改变可达性时,也会被放入queue,所以强制设置其next、value为null,帮助gc收集其引用对象(不这样的理解正确不?请大家指点) e.next = null; // Help GC e.value = null; // " " size--; break; } prev = p; p = next; } } }
四.总结
引用也是属于Java的比较特殊的数据类型,对于软、弱引用的使用场景大多是“缓存”。
相关推荐
Your author likes to read reference manuals (believe it or not)—at least if they are reasonably complete—on the grounds that this is the most efficient way to absorb a language quickly.
Java in a Nutshell Java Language Reference Java AWT Reference Java Fundamental Classes Reference Exploring Java Combined Index Combined Search Web Version Credits
### Neo4j Java Reference 3.0:深入理解图数据库扩展与高级应用 #### 概述 《Neo4j Java Reference 3.0》是一本详细介绍如何使用Java语言来开发和扩展Neo4j图数据库的专业指南。本书不仅覆盖了Neo4j的核心功能,...
Java reference sheet
Java Reference源码解析 Java Reference是Java语言的一种机制,用于追踪对象的可达性和垃圾回收。Java Reference源码解析主要为大家详细解析了Java Reference源码,具有一定的参考价值,感兴趣的小伙伴们可以参考...
在Java编程语言中,`Reference`类是一个非常特殊且重要的概念,它超出了常规的引用类型,如`Object`或数组引用。`Reference`类及其子类主要用于处理对象的软引用、弱引用和虚引用,这些引用类型在内存管理,特别是...
Java: The Complete Reference, Eleventh Edition By 作者: Herbert Schildt ISBN-10 书号: 1260440230 ISBN-13 书号: 9781260440232 Edition 版本: 11 出版日期: 2018-12-12 pages 页数: (1955) The Definitive ...
在Neo4j-java-reference-3.3这份参考指南中,涵盖了多个关于如何在Java环境中使用和扩展Neo4j数据库的高级主题。文档内容涉及到如何嵌入Neo4j到Java应用中、使用Neo4j的遍历框架、手动索引、事务管理、在线备份以及...
Java The Complete Reference, 11th Edition 9781260440232 c.pdf Java The Complete Reference, 11th Edition 9781260440232 c.pdf Java The Complete Reference, 11th Edition 9781260440232 c.pdf
Java The Complete Reference 10th Edition Java9 编程官方参考(第10版) 带书签 文字版
Neo4j的Java参考文档版本3.3详细介绍了如何在Java应用程序中嵌入Neo4j,扩展Neo4j的功能,并且介绍了如何使用REST API进行授权规则设置、远程调试配置、事务管理、手动索引、在线备份以及监控Neo4j的JMX指标。...
Java自发布以来,已经经历了多个版本的迭代,目前最新的稳定版为Java 14,但本文档提及的《Java The Complete Reference 9th》涉及的Java版本是第九版对应的Java技术标准。 提到的《Java The Complete Reference 9...
### Java AWT(Abstract Window Toolkit)详解:掌握Java图形用户界面设计的核心技能 #### 引言:Java AWT——构建用户界面的基石 在Java的世界里,Abstract Window Toolkit(AWT)扮演着至关重要的角色,它为Java...
在Java编程语言中,"reference"是一个至关重要的概念,它涉及到对象的引用和内存管理。在Java的世界里,"Everything is Object",这意味着所有的数据都以对象的形式存在,而reference则是连接这些对象与程序代码的...
这将是一个Java Swing应用程序,它将用作Java API名称的快速参考。 它将具有增量搜索和过滤功能,从而提高了搜索效率。 这将是非常简单并且是统计分析Java api的好方法。
《Java The Complete Reference 第九版源代码》是一个深入学习Java编程语言的重要资源。这个压缩包包含的源代码是作者在书中讲解各种Java概念和技术时所使用的示例程序,旨在帮助读者更好地理解和应用Java编程知识。...
这个压缩包中的源代码文件名为"javareference",很可能是该章节所有示例的集合。 在Java编程中,源代码是用Java语言编写的程序文本,包含了类定义、方法、变量和控制流程等元素。这些源代码经过Java编译器的处理,...
《neo4j-java-reference-3.1》是Neo4j官方发布的针对Java开发者的详细指南,旨在帮助开发者熟练地利用Java API与Neo4j图形数据库进行交互。这本书涵盖了从安装配置到高级特性的方方面面,是Java程序员在 Neo4j 领域...