viewing paste Unknown #27593 | Text

Posted on the
1 2 3 4 5 6 7 8 9 10
A static member of a class MyClass ...
 
    A.  can be modified by an instance method (if it is not final).
    B.  must never be final.
    C.  must be final.
    D.  can be modified directly by the client multiple times in one program (if it is final and it is public) using an assignment statement of the form
   MyClass.statMember = someValue;
    E.  can be modified directly by the client (if it is not final and it is public) using an assignment statement of the form
   MyClass.statMember = someValue;
    F.  can be modified by a static method (if it is not final).
Viewed 730 times, submitted by Guest.