Question: java Assume that in a given class, Villain , the instance member xCoordinate and static member newOriginX , are both are declared public , allowing
java
Assume that in a given class, Villain, the instance member xCoordinate and static member newOriginX, are both are declared public, allowing the client to use them directly (that's fine -- maybe there is no illegal value for either, so no need to provide mutators). Consider legal and correct the client code (where the two objects are members of the class in question):
evilVillain1.xCoordinate = 3; evilVillain1.newOriginX = -2.2; evilVillain2.xCoordinate = 5; evilVillain2.newOriginX = -1.4;
Immediately after this code, what are the values of the instance and static members?
(We will get warnings about accessing the static member through an object vs. the class name, but for this problem we ignore the warning - it's okay.)
| A | evilVillain1 has xCoordiante = 3 evilVillain2 has xCoordiante = 5 the class's static, if accessed through evilVillain1.newOrigin, = -1.4 the class's static, if accessed through evilVillain2.newOrigin, = -1.4 |
| B | evilVillain1 has xCoordiante = 3 evilVillain2 has xCoordiante = 5 the class's static, if accessed through evilVillain1.newOrigin, = -2.2 the class's static, if accessed through evilVillain2.newOrigin, = -2.2 |
| C | evilVillain1 has xCoordiante = 5 evilVillain2 has xCoordiante = 5 the class's static, if accessed through evilVillain1.newOrigin, = -2.2 the class's static, if accessed through evilVillain2.newOrigin, = -2.2 |
| D | evilVillain1 has xCoordiante = 3 evilVillain2 has xCoordiante = 5 the class's static, if accessed through evilVillain1.newOrigin, = -1.4 the class's static, if accessed through evilVillain2.newOrigin, = -2.2 |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
