Explain Global variables in Packages?
Answers were Sorted based on User's Feedback
Answer / milind
i think der is no such thing global variable in java....
instance variable
local vaiable is in java
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / preetesh
There is no term as Global variable in Java.
Types of variable: 1) Local Variable declared within method.
2) Instance Variable declared within class but outside
method.
3) Class Variable
4) Parameters are also treated as variables
Example:
--------
public class Global {
public static int i = 25;
public static String s = "Preetesh";
}
//Such members can be accessed as:
public class Test {
public static void main(String[] args)
{
Global.i = Global.i + 100;
Global.s = "Java";
}
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / anitha
expect private,all public,protected and default variables
are global in a package
| Is This Answer Correct ? | 0 Yes | 1 No |
what is function overloading in java?
0 Answers Tavant Technologies, TCS, Virtusa,
What is the purpose of void?
What is e java?
What is the difference between the file and randomaccessfile classes?
If A Class Is Declared Without Any Access Modifiers, Where May The Class Be Accessed?
Explain the difference between intermediate and terminal operations in java8?
What methodology can be employed to locate substrings inside a string?
What is the use of hashmap in java?
Explain the polymorphism principle?
Can I learn java without any programming experience?
Which software is used for java programming?
Why do we need array in java?