Skip to content

Instantly share code, notes, and snippets.

@avh4
Last active August 29, 2015 14:23
Show Gist options
  • Save avh4/cd19e5ee77314a35b500 to your computer and use it in GitHub Desktop.
Save avh4/cd19e5ee77314a35b500 to your computer and use it in GitHub Desktop.
Cohesion example 1
class Game {
int ballX = 0;
int ballY = 0;
public void update() {
ballX = ballX + 5;
ballY = ballY + 5;
}
}
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;
}
}
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();
}
}
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();
}
}
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