I am new to Java programming,Can anyone tell whats the difference between global and local variable in java
Thanks in advance Tushar
|
I am new to Java programming,Can anyone tell whats the difference between global and local variable in java Thanks in advance Tushar |
|||||||||||||||||||
|
|
There is no concept of global variable in the Java programming language. Instead, there are class and member attributes. Class attributes are marked with the static keyword, meaning that they can be accessed without instanciation, while member attributes are tied to an instance of a class. Little example:
With this class, I can use Person.TOTAL_PERSONS, but not Person.firstname. To get/set the first name (without mentionning getters/setters which you'll probably soon discover), you first need to create an instance of that class:
Finally, note that it's possible to create what other languages refer to as global variables. For instance, you can use the Singleton pattern, but anyway, global variables shouldn't be used without valid reasons: check this page |
|||
|
|
|
Your question is a little confused since you refer to static/global in the title, and global/local in your question.
classes can have member variables, and you will have one instance per instance of that class. Note that this is complicated further if you have multiple classloaders. In this scenario you can have multiple class definitions loaded, and consequently, possible multiple static variables. |
|||
|
|
|
In addition to the other (good) answers:
Writing the following code:
Note this is example code and should not be taken as good practice nor to have any sense. ;) |
|||
|
|