Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to define Global variables in Java ?

share|improve this question
11  
Can you tell us why you want to define global variables in Java? – Adam Paynter Jan 10 '11 at 12:02
5  
To access the variable from outside the class – aTJ Jan 10 '11 at 12:05
1  
Perhaps you should edit your question to include some sample code illustrating precisely what you want. It would help us recommend the best solution. – Adam Paynter Jan 10 '11 at 12:08
2  
@Adam :I should be able to change the value of a variable in one class from another class. – aTJ Jan 10 '11 at 12:32

13 Answers

up vote 38 down vote accepted

To define Global Variable you can make use of static Keyword

public class Global {

public static int a;
public static int b;
}

now you can access a and b from anywhere by calling

Global.a;

Global.b;
share|improve this answer
formatted a bit – Jigar Joshi Jan 10 '11 at 12:09
2  
Is there any keyword like 'Global' in Java.....I din't get it – aTJ Jan 10 '11 at 12:35
2  
"Global" is the name of the class. – Jerome Jan 10 '11 at 12:37
4  
Be careful when doing this - when the Global class gets unloaded the variables will be undefined null. If you sell your app this will happen sooner or later and you keep looking for error everywhere but not there.... – user387184 Nov 5 '11 at 19:55
6  
The static keyword makes variables globally accessible, while their class is loaded. – sjas Jan 29 '12 at 13:22

You don't. That's by design. You shouldn't do it even if you could.

That being said you could create a set of public static members in a class named Globals.

public class Globals {
   public static int globalInt = 0;
   ///
}

but you really shouldn't :). Seriously .. don't do it.

share|improve this answer
1  
okay...I get it – aTJ Jan 11 '11 at 6:17
as I have written above - when the class gets unloaded the variables loose their values to null and your app will crash. – user387184 Nov 5 '11 at 19:57

You are must better off using depenedency injection.

public class Globals {
    public int a;
    public int b;
}

public class UsesGlobals {
    private final Globals globals;
    public UsesGlobals(Globals globals) {
        this.globals = globals;
    }
}
share|improve this answer
2  
True, though I think your use of "Globals" confuses things a bit :-). Something like "Parameters" would be more fitting since it's not necessarily Global. – Mark Peters Jan 10 '11 at 15:46

Another way is to create an interface like this:

public interface GlobalConstants
{
  String name = "Chilly Billy";
  String address = "10 Chicken head Lane";
}

Any class that needs to use them only has to implement the interface:

public class GlobalImpl implements GlobalConstants
{
  public GlobalImpl()
  {
     System.out.println(name);
  }
}
share|improve this answer
I'm wondering why this answer has (before mine) no up-votes. Does it not provide a reasonable alternative answer to that provided by all the other answers? – M_M Aug 19 '12 at 21:29
I think this is the best answer of the lot... – Cupidvogel Jan 22 at 19:38
This is bad practice -> GlobalImpl implements GlobalConstants – MariuszS Apr 14 at 11:56
can you explain your point please? never been bad practise and please no need to vote down, thanks :) – Ayman Jitan Apr 15 at 16:45
1  
Effective Java by Joshua Bloch, Chapter 4: Classes and Interfaces, Item 19: Use interfaces only to define types "The constant interface pattern is a poor use of interfaces." This book is worth reading! :) – MariuszS Apr 15 at 20:37
show 2 more comments

There is no such thing as a truly global variable in Java. Every static variable must belong to some class (like System.out), but when you have decided which class it will go in, you can refer to it from everywhere loaded by the same classloader.

Note that static variables should always be protected when updating to avoid race conditions.

share|improve this answer
1  
java doesnt provide global variable functionally but if you want to have a global variable concept, we can make use of static keyword – Abi Jan 10 '11 at 12:25
public class GlobalClass {
     public static int x = 37;
     public static String s = "aaa";
}

This way you can access them with GlobalClass.x and GlobalClass.s

share|improve this answer

There are no global variables in Java, but there are global classes with public fields. You can use static import feature of java 5 to make it look almost like global variables.

share|improve this answer

Generally Global variable (I assume you are comparing it with C,Cpp) define as public static final

like

class GlobalConstant{
    public static final String CODE  = "cd";
}

ENUMs are also useful in such scenario :

For Example Calendar.JANUARY)

share|improve this answer
Does a global variable need to be final? Why? – Konerak Jan 10 '11 at 12:05
"final" means "constant", so this is a global constant. – duffymo Jan 10 '11 at 12:07
final is like const of C – Jigar Joshi Jan 10 '11 at 12:07
1  
If it is final, then we cannot change the value of CODE anywhere rt ??.. – aTJ Jan 10 '11 at 12:09
1  
no , thats what Global variable means for if you want to share that variable and change the data also then just remove final but it certainly depends how you want to share , where you are using and all , – Jigar Joshi Jan 10 '11 at 12:13
show 2 more comments

You could use static fields defined in some class.

share|improve this answer
1  
This is really a comment, not an answer to the question. Please use "add comment" to leave feedback for the author. – Thor Aug 17 '12 at 7:57
public class GlobalImpl {   

 public static int global = 5;

}

you can call anywhere you want:

GlobalImpl.global // 5
share|improve this answer

As you probably guess from the answer there is no global variables in Java and the only thing you can do is to create a class with static members:

public class Global {
    public static int a;
}

You can use it with Global.a elsewhere. However if you use Java 1.5 or better you can use the import static magic to make it look even more as a real global variable:

import static test.Global.*;

public class UseGlobal {
    public void foo() {
        int i = a;
    }
}

And voilĂ !

Now this is far from a best practice so as you can see in the commercials: don't do this at home

share|improve this answer

the word "static" defines a variable as global. As long as you have it before the variable it can be used in other classes

share|improve this answer

Alternatively you could make the class static, so that all your global variables are static by default without repetition of the static keyword.

static class Global {

    public int globalStuff = 0;

}
share|improve this answer
3  
Only inner classes can be static. See stackoverflow.com/questions/3584113/java-static-class – FiveO Aug 29 '12 at 19:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.