In Java, what’s the purpose of static methods and static variables?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
When a method or variable needs to be shared across several objects of a class, developers utilize a static keyword to make it shared for all objects. Instead of making unique copies for every object, this is employed.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
When a method or variable needs to be shared across several objects of a class, developers utilize a static keyword to make it shared for all objects. Instead of making
unique copies for every object, this is employed.
Is This Answer Correct ? | 0 Yes | 0 No |
Which api is provided by java for operations on set of objects?
What are data types in programming?
Explain super keyword in java.
What is a super method?
How many bits is a word?
Why are inner classes required?
What is indexof in java?
What technique is carried out to find out if a particular string is empty?
Difference between Interface & Abstract class?
What is difference between fileinputstream and filereader in java?
What is the main difference between java platform and other platforms?
What is the difference between the >> and >>> operators?