Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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小知识😀
- Host: GitHub
- URL: https://github.com/iron-buster/java-work-space
- Owner: Iron-Buster
- Created: 2024-02-20T15:56:30.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-09-13T09:05:30.000Z (2 months ago)
- Last Synced: 2024-09-30T13:04:14.533Z (about 2 months ago)
- Topics: bytecode, concurrency, java, jit, jvm, spring, tips
- Language: Java
- Homepage:
- Size: 22.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)