ゲームプログラミングとはその名のとおりゲームのプログラムを作ることを指します。『Javaから楽しく学ぶ!ゲームプログラミング専門学校』ではゲームプログラミングについて、実際にゲームプログラムをJAVAプログラミング言語を使用し、作成していきながら詳しく解説していきます。
public class Counter implements Runnable{
private String counterName;
private static int count = 0;
public Counter(String counterName){
this.counterName = counterName;
}
public static void main(String[] args){
Counter ct1 = new Counter("カウンタ1");
Counter ct2 = new Counter("カウンタ2");
Thread th1 = new Thread(ct1);
Thread th2 = new Thread(ct2);
th1.setPriority(Thread.MIN_PRIORITY);
th2.setPriority(Thread.MAX_PRIORITY);
th1.start();
th2.start();
}
public void run(){
for(int i = 0; i < 10000; i++){
count ++;
}
System.out.println(this.counterName + " " + "スレッド終了");
}
}
th1.setPriority(Thread.MIN_PRIORITY);
th2.setPriority(Thread.MAX_PRIORITY);