Explain about global variables in Java?

Answers were Sorted based on User's Feedback



Explain about global variables in Java?..

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

Explain about global variables in Java?..

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

Explain about global variables in Java?..

Answer / niranjanravi

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

Post New Answer

More Core Java Interview Questions

How can you read an integer value from the keyword when the application is runtime in java? example?

0 Answers   HCL,


design an lru cache in java?

0 Answers  


What are the loops in java?

0 Answers  


what is the difference between statis block and static variable

7 Answers  


how to connect two diffrent applet files

0 Answers  






What is the purpose of skeleton and stub?

0 Answers  


What is the synonym of string?

0 Answers  


What is static in java?

0 Answers  


What is the base class of all exception classes?

0 Answers  


What is java util?

0 Answers  


What is functional interface in java?

0 Answers  


What is the difference between scrollbar and scrollpane?

0 Answers  


Categories