mkdir()
このプログラムは、失敗するシナリオをテストするために作成しました。なぜ失敗するのですか?
うまく動作することもあれば、次のようになることもあります。
DIR :: myDir4 を作成できません DIR :: myDir4 を作成できません
そして最後に、すべてのディレクトリが作成されていることがわかりました...
すべてのテストで、作成されたすべてのディレクトリを削除します。
私のプロジェクトには、このようなディレクトリをテストして作成しようとするスレッドが100あるため、これを試しました...そして同じように失敗します...
public class DFS {
static long time1 = System.currentTimeMillis();
public static void main(String a[]) {
new Thread(new CreteDir()).start();
new Thread(new CreteDir()).start();
new Thread(new CreteDir()).start();
new Thread(new CreteDir()).start();
new Thread(new CreteDir()).start();
new Thread(new CreteDir()).start();
new Thread(new CreteDir()).start();
new Thread(new CreteDir()).start();
}
}
class CreteDir implements Runnable {
public void run() {
//Object obj = new Object();
synchronized (this) {
if(System.currentTimeMillis() - DFS.time1 > 10) {
try {
this.wait();
}
catch(InterruptedException ie) {
ie.printStackTrace();
}
}
File f1 = new File("myDir1");
File f2 = new File("myDir2");
File f3 = new File("myDir3");
File f4 = new File("myDir4");
File f5 = new File("myDir5");
if (!f1.exists()&&!f1.mkdir()) {
System.out.println("Cannot create DIR :: "+f1.getName());
}
if (!f2.exists()&&!f2.mkdir()) {
System.out.println("Cannot create DIR :: "+f2.getName());
}
if (!f3.exists()&&!f3.mkdir()) {
System.out.println("Cannot create DIR :: "+f3.getName());
}
if (!f4.exists()&&!f4.mkdir()) {
System.out.println("Cannot create DIR :: "+f4.getName());
}
if (!f5.exists()&&!f5.mkdir()) {
System.out.println("Cannot create DIR :: "+f5.getName());
}
this.notifyAll();
}
}
}