简体   繁体   中英

Are static methods always loaded into memory?

Say that I have a Java project with some "Utils" classes, and that those classes have only static methods and members.

Once I run my application, are those methods and members automatically loaded into memory? Or that only happens once I call the class along the code?

EDIT: Some sample code to illustrate my question.

RandomUtils.java

public class RandomUtils {

    private static Random rand = new Random();

    public static int randInt(int min, int max) {
        // nextInt is normally exclusive of the top value,
        // so add 1 to make it inclusive
        return rand.nextInt((max - min) + 1) + min;
    }
}

MainClass.java

public class MainClass {
        public static void main(String[] args) {
            // Some other operations. Is my class already loaded here?

            int randomNumber = RandomUtils.randInt(1,10); // Or is it only loaded here?
        }
}

And what if that class have other static members and methods, and if it loads only once I call one of them, the other methods are loaded as well?

Static methods (and non-static methods, and static/member variables) are not loaded into memory directly: the declaring class is loaded into memory in its entirety, including all declared methods and fields. As such, there is no difference in the way that static/non-static methods/fields are loaded.

A class is only loaded by a class loader the first time it is referenced by other code. This forms the basis of the Initialization on demand idiom .

Your class is loaded when (among other conditions) its static method is called for the first time. See reference .

static methods loads only once when you call class. 在此输入图像描述

college="ITS" is an static variable

一旦你打电话给它,它就会发生。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM