(JAVA) In which memory area are static class fields stored?

    1 answer 1

    In the Heap in the Permanent Generation area. Although it is worth noting that for the objects themselves that are referenced by static fields, memory can be allocated in other areas of heap.