public class GameLoopThread extends Thread
{
static final long FPS = 10;
private GameView view;
private boolean running = false;
public GameLoopThread(GameView view)
{
this.view = view;
}
public void setRunning(boolean run)
{
running = run;
}
@Override
public void run()
{
long ticksPS = 1000 / FPS;
long startTime;
long sleepTime;
while (running)
{
Canvas c = null;
startTime = System.currentTimeMillis();
try
{
c = view.getHolder().lockCanvas();
synchronized (view.getHolder())
{
view.onDraw(c);
}
}
finally
{
if (c != null)
{
view.getHolder().unlockCanvasAndPost(c);
}
}
sleepTime = ticksPS-(System.currentTimeMillis() - startTime);
try
{
if (sleepTime > 0)
sleep(sleepTime);
else
sleep(10);
}
catch (Exception e){
}
}
}
}
my confusion is that i have initialize-->private boolean running = false; after that i assigned-->
public void setRunning(boolean run)
{
running = run;
}
so what "running" realy holds, what is the vale of "run"?sombody plz explain setRunning(boolean run) method.

runningis not declaredvolatile(assuming thatsetRunning(...)will be invoked by another thread). – mre Aug 15 '11 at 17:45