Explain about global variables in Java?
Answers were Sorted based on User's Feedback
Answer / ravikiran(aptech mumbai)
global variables are declared globally and not inside any
method.
They are applicable to all the parts of the class
| Is This Answer Correct ? | 11 Yes | 1 No |
Answer / satish
Direct global variables are not possible like
int i=0;
class{
....
....
}
But other way is create a class with static variables and
you can use it wherever needed.
class Global{
public static int i;
public static String s="";
}
class SomeClass{
public static void main(String args[]){
Global.i=23;
Global.s="Whats up"
}
}
| Is This Answer Correct ? | 6 Yes | 2 No |
Global variables are not possible in java because the
concept of Encapsulation is eliminated here.it is not in
the main() method where we declare variables.
| Is This Answer Correct ? | 5 Yes | 8 No |
What are advantages and disadvantages of OOPs?
What does += mean in java?
What is a singleton class? Give a practical example of its usage.
What is the minimum and maximum length of an identifier?
What the difference is between execute, execute Query, execute Update?
How we can skip finally block of exception even if some exception occurs in the exception block in java?
Write a program to find maximum and minimum number in array?
What is a blocking method in Java?
Keywords in Exceptions?
Give us the name of the list layoutmanagers in java?
How to call one constructor from the other constructor ?
can any one send me the example program of immutable class?