Package exercises.models

Examples of exercises.models.GameEntry


 
  public void r_1_1() { 
   
    int accessor = 4;
   
    GameEntry[] gameEntriesA = { new GameEntry( 0 ), new GameEntry( 1 ), new GameEntry( 2 ), new GameEntry( 3 ), new GameEntry( 4 ), new GameEntry( 5 ), new GameEntry( 6 ) };
   
    GameEntry[] gameEntriesB= gameEntriesA;
    gameEntriesB[ accessor ].setScore( 550 );
   
    System.out.println( "Q: If we then immediately set A [4].score equal to 550, what is the score value of the GameEntry object referenced by B[4]?" );
View Full Code Here

TOP

Related Classes of exercises.models.GameEntry

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.