1: …… 2: protected void cwe_572() { 3: Thread thr = new PrintThread(); 4: // 새로운 스레드를 시작시킨다. 5: thr.start(); 6: } …… 7: } 8: class PrintThread extends Thread { 9: public void run() { System.out.println("CWE 572 TEST"); } 10: }