Why Static variable required in java?For ex,class A
{
static int a;
int b;
}
Why static is required?
Answers were Sorted based on User's Feedback
Answer / za
because it help us to declare class field asglobal variable
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / sumit pal singh
static keyword is mainly used for memory management purpose. And static variable is used for declare the common property of object.
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / aswini
Without using instance of the class means no need to use the class object to call static variable insted directly use the classname to use the static variable.moreover ,only one copy of static varible avaible to use all the classes.
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / vaishnavi
To answer Soumya's question, instance variables are declared at class level, but the instance variables still belong to an instance/object. But static variables belong to a class.
Is This Answer Correct ? | 0 Yes | 0 No |
What does index mean in java?
What is a ?
whatis Home interface and Remoteinterface? with example?
What do you mean by order of precedence and associativity?
What does microservices mean?
What is the difference between equals() and == in java?
What is a marker interface?
Can private class be inherited in java?
Given: 11. public static void main(String[] args) { 12. Integer i = uew Integer(1) + new Integer(2); 13. switch(i) { 14. case 3: System.out.println(”three”); break; 15. default: System.out.println(”other”); break; 16. } 17. } ‘What is the result? 1 three 2 other 3 An exception is thrown at runtime. 4 Compilation fails because of an error on line 12.
what is unreachable code problem in multiple catch statements
What is byte value?
What is stack class in java?