Tiered Compilation in the JVM
Explore C1 and C2 JIT compilers, on-stack replacement, and deoptimization handling in the JVM's tiered compilation model.
Explore C1 and C2 JIT compilers, on-stack replacement, and deoptimization handling in the JVM's tiered compilation model.
How ZGC and Shenandoah achieve sub-millisecond pause times through concurrent operations and load barriers, without stopping your application.
Learn about partially implemented classes that define contracts for subclasses using abstract methods and concrete implementations.
Master Java arithmetic operators: addition, subtraction, multiplication, division, and modulo with integer division gotchas and operator precedence explained.
Learn Java array fundamentals: declaration, initialization, element access, and the length property explained simply.
Learn ArrayList: dynamic resizing, internal array management, when to choose ArrayList over plain arrays, and performance trade-offs.
Master autoboxing and unboxing in Java: automatic conversion between primitives and their wrapper classes, including performance implications and common pitfalls.
Master Java bitwise operators: AND, OR, XOR, NOT, and shift operators for manipulating individual bits, flags, and masks in low-level programming.
Master Java loop control: break to exit loops, continue to skip iterations, and labeled statements for controlling nested loop execution precisely.
How Java compilers generate bridge methods to preserve polymorphic behavior after type erasure with practical examples.