Customizing IntelliJ IDEA Settings
Interface Settings
Appearance & Behavior
Theme Configuration
Adjusting Font and Size for Windows and Menus
You can install your preferred font and select it here.
Enable Memory Indicator Display
IDEA does not show memory usage by default. To enable it, go to Help - Find Actions, search for Show memory indicator, and set it to On:
Result:
Di ...
Posted on Sat, 19 Sep 2026 16:23:02 +0000 by Kondie
Why a Simple Volatile Test Hangs in IntelliJ IDEA’s Run Mode but Not Debug
Take a look at this piece of code from Understanding the Java Virtual Machine:
public class VolatileTest {
public static volatile int race = 0;
public static void increase() {
race++;
}
private static final int THREADS_COUNT = 20;
public static void main(String[] args) {
Thread[] threads = new Thread[THREA ...
Posted on Thu, 07 May 2026 01:00:19 +0000 by zyntrax