Last active
August 29, 2015 14:23
-
-
Save avh4/cd19e5ee77314a35b500 to your computer and use it in GitHub Desktop.
Cohesion example 1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Game { | |
int ballX = 0; | |
int ballY = 0; | |
public void update() { | |
ballX = ballX + 5; | |
ballY = ballY + 5; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Ball { | |
int x = 0; | |
int y = 0; | |
} | |
class Game { | |
Ball ball = new Ball(); | |
public void update() { | |
ball.x = ball.x + 5; | |
ball.y = ball.y + 5; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Ball { | |
int x = 0; | |
int y = 0; | |
public void move() { | |
x = x + 5; | |
y = y + 5; | |
} | |
} | |
class Game { | |
Ball ball = new Ball(); | |
public void update() { | |
ball.move(); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Ball { | |
int x = 0; | |
int y = 0; | |
public void move() { | |
x = x + 5; | |
y = y + 5; | |
} | |
} | |
class Game { | |
Ball balls[] = { new Ball(), new Ball() }; | |
public void update() { | |
ball[0].move(); | |
ball[1].move(); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Ball { | |
int x = 0; | |
int y = 0; | |
} | |
class Game { | |
Ball balls[] = { new Ball(), new Ball() }; | |
public void update() { | |
// update the first ball | |
ball[0].x = ball[0].x + 5; | |
ball[0].y = ball[0].y + 5; | |
// update the second ball | |
ball[1].x = ball[1].x + 5; | |
ball[1].y = ball[1].y + 5; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment