How can we define global variables in java?
I want to call the variables from anywhere, for which I need to declare them as global. But don’t know how to declare global variables in java ?
To make global variables in java , you can use the keyword static:
public class Global
{
public static int x;
public static int y;
}