What is Difference between class variable and instance variable with example?
-
-
Answer:
Well, at the basic level, class fields, or static fields, as they are called sometimes, belong to the class and not to any particular instance of the class. Class fields can be assigned without instantiation of instance objects of a class. For example: public class ExampleClass { public static String classField = ""; public String instanceField = ""; } I can assign a value to classField just like that: ExampleClass.classField = "new value"; Instance fields, on the other hand, belong to a particular instance of the class. Thus, to assign an instance field a value, you have to first instantiate an object of the class just like that: ExampleClass obj1 = new ExampleClass(); obj1.instanceField = "new value";
wiki.answers.com Visit the source
Related Q & A:
- what is Difference between Diffuse Optical Tomography and Optical Tomography?Best solution by Yahoo! Answers
- What is difference between final,finally and finalize?Best solution by java2novice.com
- What is difference between bolt & screw?Best solution by differencebetween.net
- Does anyone know what the difference is between the National Geographic Adventure and Traveler magazines?Best solution by Yahoo! Answers
- What's difference between mail and webmail?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.