メイン メソッド内でスレッドを開始しようとしていますが、スレッドの開始時に run メソッドが呼び出されません。スレッド内でスレッドを開始することに関係があると思います:
package com.audiack.theForest;
public class theForestThread implements Runnable {
private static int theBeginningTimes = 0;
private static TheBeginning theBeginning = new TheBeginning();
public static void main(String args[]){
Thread thread = new Thread();
thread.start();
}
@Override
public void run() {
theBeginning.start(theBeginningTimes);
theBeginningTimes++;
}
}