journee dev dictionnaire

This commit is contained in:
2025-11-13 14:57:22 +01:00
parent 06cbc95c56
commit ef095fe529
4 changed files with 790 additions and 0 deletions

Binary file not shown.

View File

@@ -0,0 +1,38 @@
import java.util.*;
import java.lang.*;
public class Traces {
public static void main(String[] args){
Map<Thread, StackTraceElement[]> traces = Thread.getAllStackTraces();
for(Thread t : traces.keySet()){
System.out.println(t.getName()+":");
StackTraceElement[] pile = traces.get(t);
for(StackTraceElement e : pile){
System.out.println(""+e);
}
}
System.out.println();
}
}

File diff suppressed because it is too large Load Diff