Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/iron-buster/java-work-space

java小知识😀
https://github.com/iron-buster/java-work-space

bytecode concurrency java jit jvm spring tips

Last synced: about 1 month ago
JSON representation

java小知识😀

Awesome Lists containing this project

README

        

# java-work-space
java小知识😀

## JIT
- [jit对热点代码的优化](https://github.com/Iron-Buster/java-work-space/blob/main/java-jit/src/com/fqh/CompileTest.java)
## JVM
- [Lambda底层原理](https://github.com/Iron-Buster/java-work-space/blob/main/jvm/src/com/fqh/LambdaTest.java)
- [MethodHandle](https://github.com/Iron-Buster/java-work-space/blob/main/jvm/src/com/fqh/MethodHandleTest.java)
- [InvokeDynamic指令](https://github.com/Iron-Buster/java-work-space/blob/main/jvm/src/com/fqh/TestInvokedynamic.java)
## 并发
- [ThreadLocal](https://github.com/Iron-Buster/java-work-space/tree/main/java-concurrent/src/com/fqh/thread_local)
- [Volatile关键字](https://github.com/Iron-Buster/java-work-space/tree/main/java-concurrent/src/com/fqh/volatile_feature)
## OOPS
- [对象指针](https://github.com/Iron-Buster/java-work-space/blob/main/java-oops/src/main/java/com/fqh/TestJavaOOPS.java)
- [分代年龄](https://github.com/Iron-Buster/java-work-space/blob/main/java-oops/src/main/java/com/fqh/TestMaxTenuringThreshold.java)
## 设计模式
- [单例模式](https://github.com/Iron-Buster/java-work-space/blob/main/desgin-pattern/src/com/fqh/singleton/TestSingleton.java)