okeefe | Code :
- void jButton7_actionPerformed(ActionEvent e) {
- for(int i=1;i<51;i++){
- for(int n=1000;n<64001;n=n*4){
- tabInsertion = new int[n];
- tabInsertionL = new String[n];
- tabHeap = new int[n];
- tabHeapL= new String[n];
- tabMerge = new int[n];
- tabMergeL = new String[n];
- for(int d=0; d<101;d=d+25){
- tmp.genererTableau(tabInsertion,tabInsertionL,r);
- tmp.genererTableau(tabHeap,tabHeapL,r);
- tmp.genererTableau(tabMerge,tabMergeL,r);
- for(double r=4;r<25;r=r+4){
- tmp.desordonnerTableau(tabInsertion,tabInsertionL,d);
- tmp.desordonnerTableau(tabHeap,tabHeapL,d);
- tmp.desordonnerTableau(tabMerge,tabMergeL,d);
- if((r==4) || (r==8) || (r==16) || (r==24))
- System.out.println(Math.pow(2,r));
- }
- }
- }
- }
- }
|
pourquoi j'ai l'erreur:
"Frame1.java": Error #: 300 : variable tabInsertion not found in class Frame1 at line 339, column 9
...
...
je ne comprend pas pourquoi je ne peux créer une variable dans un évènement |