Advertisements
Advertisements
Question
Consider the following class:
public class MyClass
{
public static int x - 3, y = 4;
public int a = 2, b = 3;
}
- Name the variables for which each object of the class will have its own distinct copy.
- Name the variables that are common to all objects of the class.
Short Answer
Solution
- The variables for which each object of the class will have its own distinct copy are a and b.
- The variables that are common to all the objects of the class are x and y.
shaalaa.com
Is there an error in this question or solution?