Loading...
Logo
Processing Forum
plz tell me were this is wrong:
Copy code
  1. import java.util.Map;

  2. Map<Integer, HashMap<Integer, Boolean>> edjesMap = new HashMap();

  3. HashMap<Integer, Boolean> sub = new HashMap();
  4. int vb = 0;
  5. int va = 0;
  6. Boolean help;

  7. help = sub.get(vb);
  8. if (help == null) {

  9.   sub.put(vb, true);
  10.   HashMap<Integer, Boolean> sub1 = new HashMap();
  11.   try {
  12.     sub1 = edjesMap.get(vb);
  13.     sub1.put(va, true);
  14.   }
  15.   catch(Exception w ) {
  16.     w.printStackTrace();
  17.     sub1.put(va, true);
  18.   }
  19.   edjesMap.put(vb, sub1);
  20. }

can u give me a solution
ty
:D

Replies(12)

I think you should use put() method before get().
That is, you gotta store something before accessing what's stored, right?

Even for the inner HashMap's instantiation, you gotta put() that into the outer HashMap!
After that, you gotta put() keys/values inside the inner HashMap.
Only then you can start using get()!

In a previous post of yours, my example clearly demonstrates that:
http://forum.processing.org/topic/can-i-do-hashmap-integer-hashmap-integet-boolean-and-more

I still think you don't need such a complex structure! 
The code logic is a indecipherable and the purpose of the code is unknown because you don't explain it - so how do you expect a decent answer?

One error is line 22 because it will always throws a Null Pointer Eception because the only way to get here is if the identical statement in line 18 throws an exception, so delete line 22.

Please note that this was pointed out in reply to your previous post.
after all this the code still gives error:

This should do the follow:
take sub from edjesMap.get(va)
see is sub have any key vb
if not sub.put (vb,true)
       and edjes.put(va,sub);
       and take sub1 from edjesMap.get(vb);
      and sub1.put(va,true);
      and edjesMap.put(vb,vb);

Copy code
  1. import java.util.Map;

  2. Map<Integer, Map<Integer, Boolean>> edjesMap = new HashMap();

  3. Map<Integer, Boolean> sub = new HashMap();
  4. int vb = 0;
  5. int va = 0;
  6. Boolean help;


  7.       
  8.      
  9.       // AAAAA-------------------
  10.       
  11.         sub = edjesMap.get(va);
  12.       
  13.       
  14.       // BBBBB-------------------
  15.       help = sub.get(vb);
  16.       if(help == null) {
  17.         
  18.         sub.put(vb,true);
  19.         edjesMap.put(va,sub);
  20.         Map<Integer,Boolean> sub1 = new HashMap();
  21.         sub1 = edjesMap.get(vb);
  22.         sub1.put(va,true);
  23.         edjesMap.put(vb,sub1);
  24.        
  25.         
      }can u plz tell me a solution but plz test it first
This should do the follow:

Copy code
  1. take sub from edjesMap.get(va)
  2. see is sub have any key vb
  3. if not sub.put (vb,true)
  4.       and edjes.put(va,sub);
  5.       and take sub1 from edjesMap.get(vb);
  6.       and sub1.put(va,true);    
  7.       and edjesMap.put(vb,sub1);

Some questions for you

  1. In line 1 the get will return null if edjesMap does not contain the key va - what should happen in that case because sub == null?
  2. In line 5 the get will return null if edjesMap does not contain the key vb - what should happen in that case because sub1 == null?
  3. I have change line 7 is that correct?


ok i got u point
and i made the repair an it work

Copy code
  1. import java.util.Map;

  2. Map<Integer, Map<Integer, Boolean>> edjesMap = new HashMap();

  3. Map<Integer, Boolean> sub = new HashMap();
  4. int vb = 0;
  5. int va = 0;
  6. Boolean help;


  7.       
  8.      
  9.       // AAAAA-------------------
  10.       
  11.         sub = edjesMap.get(va);
  12.       if(sub == null) {
  13.         sub = new HashMap();
  14.       }
  15.       
  16.       // BBBBB-------------------
  17.       help = sub.get(vb);
  18.       if(help == null) {
  19.         
  20.         sub.put(vb,true);
  21.         edjesMap.put(va,sub);
  22.         Map<Integer,Boolean> sub1 = new HashMap();
  23.         sub1 = edjesMap.get(vb);
  24.         sub1.put(va,true);
  25.         edjesMap.put(vb,sub1);
  26. }
but when i made the reapir in my semi-full code, it still wrong.
 i cant show u the full code because is too bigg
but do u know a way that that could go wrong

note:the error is in that part of the code.

i can show the page of the code, but will not compile ,because , all the other classes are in diferente pages

watch:

(ps : that is the class object, resposeble for holding all the hashmap and arraylists that hold vertex , surfaces,and edjes

ps : the error is in the function addSurf, this one should create the surface and check if the edjes of that surface already exist, if not it will create them)
Copy code
  1. ArrayList objs = new ArrayList();
  2. // CLASS -----------------------------------------------------------------------------------------------------------------
  3. class obj {
  4.   obj() {
  5.   }
  6.   obj(float x ,float y , float z) {
  7.     posx = x;
  8.     posy = y;
  9.     posz = z;
  10.   }
  11.   obj(float x ,float y , float z,float rx ,float ry , float rz) {
  12.     posx = x;
  13.     posy = y;
  14.     posz = z;
  15.     rotx = rx;
  16.     roty = ry;
  17.     rotz = rz;
  18.   }
  19.   // VARIABLES -----------------------------------------------------------------------------------------------------------------
  20.   boolean selected = false;
  21.   ArrayList surfs = new ArrayList();
  22.   ArrayList edjes = new ArrayList();
  23.  Map <Integer,vert> verts = new HashMap<Integer,vert>();
  24.   Map<Integer, Map<Integer,Boolean>> edjesMap = new HashMap();
  25.   int[] selectVerts =new int [0];
  26.   int[] selectFaces =new int [0];
  27.   int[] selectEdjes =new int [0];
  28.   
  29.   
  30.   float posx=0;
  31.   float posy=0;
  32.   float posz=0;
  33.   int sPosx;
  34.   int sPosy;
  35.   float rotx = 0;
  36.   float roty = 0;
  37.   float rotz = 0;
  38.   boolean visible = false;
  39.   int cont = -1;
  40.   int  []delVerts = new int[0];
  41.   
  42.   
  43. //EDJE_CONTROLL------------------------------------------------------------------------------------------------------------------------   
  44.  
  45.   void edjesMove() {
  46.     for(int i = 0; i < edjes.size();i++) {
  47.       edje e = (edje) edjes.get(i);
  48.       vert v1 = (vert) verts.get(e.v1);
  49.       vert v2 = (vert) verts.get(e.v2);
  50.       e.cPosx = (v1.posx + v2.posx)*0.5;
  51.       e.cPosy = (v1.posy + v2.posy)*0.5;
  52.       e.cPosz = (v1.posz + v2.posz)*0.5;
  53.     }
  54.     
  55.   
  56.   }
  57. // CLASS FUNCTIONS -----------------------------------------------------------------------------------------------------------------
  58.   void facesMove() {
  59.     for(int i = 0; i < surfs.size();i++) {
  60.       surf s =(surf) surfs.get(i);
  61.       vert v1 = (vert) verts.get(s.p1);
  62.       vert v2 = (vert) verts.get(s.p2);
  63.       vert v3 = (vert) verts.get(s.p3);
  64.       
  65.       s.cPosx = (v1.posx + v2.posx + v3.posx)*0.333;
  66.       s.cPosy = (v1.posy + v2.posy + v3.posy)*0.333;
  67.       s.cPosz = (v1.posz + v2.posz + v3.posz)*0.333;
  68.       
  69.     }  
  70.   }
  71.   // CREATE VERTEX -----------------------------------------------------
  72.   int createVert(float x, float y , float z) {
  73.     
  74.     if(delVerts.length >0){
  75.       int i = delVerts[delVerts.length -1];
  76.       delVerts = shorten(delVerts);
  77.       verts.put(i,new vert(x,y,z,i));
  78.       return i;
  79.     }
  80.     else{
  81.       cont++;
  82.       verts.put(cont,new vert(x,y,z,cont));
  83.       return cont;
  84.     }
  85.     
  86.   }
  87.   // DELETE VERTEX -----------------------------------------------------
  88.   void delVert(int i){
  89.     delVerts = append(delVerts,i);
  90.     verts.remove(i);
  91.   
  92.   }


  93.   // ADDING SURFS -----------------------------------------
  94.   void addSurf(int a , int b, int c) {
  95.     int va = 0;
  96.     int vb = 0;
  97.     int vc = 0;
  98.     surfs.add(new surf(a,b,c));
  99.     for(int i= 0; i<3 ; i++) {
  100.            if(i == 0) {va =a;vb = b; vc = c;}
  101.       else if(i == 1) {va =c;vb = a; vc = b;}
  102.       else if(i == 2) {va =b;vb = a; vc = c;}
  103.       Map<Integer,Boolean> sub = new HashMap();
  104.       
  105.      boolean help;
  106.       // AAAAA-------------------
  107.       
  108.         sub = edjesMap.get(va);
  109.       if(sub == null){
  110.         sub = new HashMap();
  111.       }
  112.       
  113.       // BBBBB-------------------
  114.       help = sub.get(vb);
  115.       if(help == null) {
  116.         
  117.         sub.put(vb,true);
  118.         edjesMap.put(va,sub);
  119.         Map<Integer,Boolean> sub1 = new HashMap();
  120.         sub1 = edjesMap.get(vb);
  121.        if(sub1 == null) {
  122.           sub1 = new HashMap();
  123.         }
  124.         sub1.put(va,true);
  125.         edjesMap.put(vb,sub1);
  126.         edjes.add(new edje(va,vb));
  127.         
  128.       }
  129.       //-----
  130.       
  131.       // CCCCC-------------------
  132.       /*try{
  133.         help = sub.get(vc);
  134.       }
  135.       catch(Exception e ){
  136.         e.printStackTrace();
  137.         sub.put(vc,true);
  138.         HashMap<Integer,Boolean> sub1 = new HashMap();
  139.         try{
  140.           sub1 = edjesMap.get(vc);
  141.           sub1.put(va,true);
  142.         }
  143.         catch(Exception w ){
  144.           w.printStackTrace();
  145.           sub1.put(va,true);
  146.         }
  147.         edjesMap.put(vc,sub1);
  148.         edjes.add(new edje(va,vc));
  149.       }*/
  150.       
  151.       
  152.     }
  153.   }
  154. }

if it is any way form e send u the full project´
plz say.
:D
ty for u ilemited patience.
:D

just one more thing is u are interested in elpping me in this project i will be very grateffull(let me know)
note:
this project is a software toedit and  create geometry 
 then will slice the geometric in 2d data to be later printer in a 3d printer that im doing
 
if u were interested let me know and i will tell u more of wht is done and wht is stilll needed to do
:D
cya
If you look in the fist block of code you pasted - in section BBB lines 27 - 30 are

27      Map<Integer,Boolean> sub1 = new HashMap();
28      sub1 = edjesMap.get(vb);
29      sub1.put(va,true);
30      edjesMap.put(vb,sub1);


In line 27 you create a new HashMap called sub1 but then the statement in line 28 replaces it with one from edjesMap but if it doesn't exist then sub1 becomes null. Then you get an error on line 29 . Replace lines 27-30 with

Copy code
  1. Map<Integer,Boolean> sub1 = edjesMap.get(vb);
  2. if(sub1 == null)
  3.   sub1 = new HashMap();
  4. sub1.put(va,true);
  5. edjesMap.put(vb,sub1);
i replace and still an error

watch blue part:
Copy code
  1. ArrayList objs = new ArrayList();
  2. // CLASS -----------------------------------------------------------------------------------------------------------------
  3. class obj {
  4.   obj() {
  5.   }
  6.   obj(float x ,float y , float z) {
  7.     posx = x;
  8.     posy = y;
  9.     posz = z;
  10.   }
  11.   obj(float x ,float y , float z,float rx ,float ry , float rz) {
  12.     posx = x;
  13.     posy = y;
  14.     posz = z;
  15.     rotx = rx;
  16.     roty = ry;
  17.     rotz = rz;
  18.   }
  19.   // VARIABLES -----------------------------------------------------------------------------------------------------------------
  20.   boolean selected = false;
  21.   ArrayList surfs = new ArrayList();
  22.   ArrayList edjes = new ArrayList();
  23.  Map <Integer,vert> verts = new HashMap<Integer,vert>();
  24.   Map<Integer, Map<Integer,Boolean>> edjesMap = new HashMap();
  25.   int[] selectVerts =new int [0];
  26.   int[] selectFaces =new int [0];
  27.   int[] selectEdjes =new int [0];
  28.   
  29.   
  30.   float posx=0;
  31.   float posy=0;
  32.   float posz=0;
  33.   int sPosx;
  34.   int sPosy;
  35.   float rotx = 0;
  36.   float roty = 0;
  37.   float rotz = 0;
  38.   boolean visible = false;
  39.   int cont = -1;
  40.   int  []delVerts = new int[0];
  41.   
  42.   
  43. //EDJE_CONTROLL------------------------------------------------------------------------------------------------------------------------   
  44.  
  45.   void edjesMove() {
  46.     for(int i = 0; i < edjes.size();i++) {
  47.       edje e = (edje) edjes.get(i);
  48.       vert v1 = (vert) verts.get(e.v1);
  49.       vert v2 = (vert) verts.get(e.v2);
  50.       e.cPosx = (v1.posx + v2.posx)*0.5;
  51.       e.cPosy = (v1.posy + v2.posy)*0.5;
  52.       e.cPosz = (v1.posz + v2.posz)*0.5;
  53.     }
  54.     
  55.   
  56.   }
  57. // CLASS FUNCTIONS -----------------------------------------------------------------------------------------------------------------
  58.   void facesMove() {
  59.     for(int i = 0; i < surfs.size();i++) {
  60.       surf s =(surf) surfs.get(i);
  61.       vert v1 = (vert) verts.get(s.p1);
  62.       vert v2 = (vert) verts.get(s.p2);
  63.       vert v3 = (vert) verts.get(s.p3);
  64.       
  65.       s.cPosx = (v1.posx + v2.posx + v3.posx)*0.333;
  66.       s.cPosy = (v1.posy + v2.posy + v3.posy)*0.333;
  67.       s.cPosz = (v1.posz + v2.posz + v3.posz)*0.333;
  68.       
  69.     }  
  70.   }
  71.   // CREATE VERTEX -----------------------------------------------------
  72.   int createVert(float x, float y , float z) {
  73.     
  74.     if(delVerts.length >0){
  75.       int i = delVerts[delVerts.length -1];
  76.       delVerts = shorten(delVerts);
  77.       verts.put(i,new vert(x,y,z,i));
  78.       return i;
  79.     }
  80.     else{
  81.       cont++;
  82.       verts.put(cont,new vert(x,y,z,cont));
  83.       return cont;
  84.     }
  85.     
  86.   }
  87.   // DELETE VERTEX -----------------------------------------------------
  88.   void delVert(int i){
  89.     delVerts = append(delVerts,i);
  90.     verts.remove(i);
  91.   
  92.   }


  93.   // ADDING SURFS -----------------------------------------
  94.   void addSurf(int a , int b, int c) {
  95.     int va = 0;
  96.     int vb = 0;
  97.     int vc = 0;
  98.     surfs.add(new surf(a,b,c));
  99.     for(int i= 0; i<3 ; i++) {
  100.            if(i == 0) {va =a;vb = b; vc = c;}
  101.       else if(i == 1) {va =c;vb = a; vc = b;}
  102.       else if(i == 2) {va =b;vb = a; vc = c;}
  103.       Map<Integer,Boolean> sub = new HashMap();
  104.       
  105.      boolean help;
  106.       // AAAAA-------------------
  107.       
  108.         sub = edjesMap.get(va);
  109.       if(sub == null){
  110.         sub = new HashMap();
  111.       }
  112.       
  113.       // BBBBB-------------------
  114.       help = sub.get(vb);
  115.       if(help == null) { // the operator == is undifined for the argument type(s) boolean , null
  116.         
  117.         sub.put(vb,true);
  118.         edjesMap.put(va,sub);
  119.         Map<Integer,Boolean> sub1 = new HashMap();
  120.         sub1 = edjesMap.get(vb);
  121.        if(sub1 == null) {
  122.           sub1 = new HashMap();
  123.         }
  124.         sub1.put(va,true);
  125.         edjesMap.put(vb,sub1);
  126.         edjes.add(new edje(va,vb));
  127.         
  128.       }
  129.            
  130.     }
  131.   }
  132. }
  133. // STARTING OBJECTS -------------------------------

  134. void plane(float x, float y ,float z,float s){
  135.   
  136.   objs.add(new obj(x,y,z));
  137.   obj o = (obj) objs.get(objs.size() - 1);
  138.   int a = o.createVert((-1 *s),(-1*s),0f);
  139.   int w = o.createVert((-1*s),(1*s),0f);
  140.   int d = o.createVert((1*s),(1*s),0f);
  141.   int f = o.createVert((1*s),(-1*s),0f);
  142.   o.surfs.add(new surf(a,w,d));
  143.   o.surfs.add(new surf(d,f,a));
  144.  
  145.   o.facesMove();
  146.   o.edjesMove();
  147.   


  148. }

  149. void square(float x, float y ,float z,float s){
  150.   
  151.   objs.add(new obj(x,y,z));
  152.   obj o = (obj) objs.get(objs.size() - 1);
  153.   int a = o.createVert((-1 *s),(-1*s),(-1*s));
  154.   int w = o.createVert((-1*s),(1*s),(-1*s));
  155.   int d = o.createVert((1*s),(1*s),(-1*s));
  156.   int f = o.createVert((1*s),(-1*s),(-1*s));
  157.   int g = o.createVert((-1 *s),(-1*s),(1*s));
  158.   int h = o.createVert((-1*s),(1*s),(1*s));
  159.   int j = o.createVert((1*s),(1*s),(1*s));
  160.   int k = o.createVert((1*s),(-1*s),(1*s));
  161.   // botton Face ------------------------
  162.   
  163.   o.addSurf(a,w,d);
  164.   o.addSurf(d,f,a);
  165.   
  166.   // Top Face --------------------------
  167.   
  168.   o.addSurf(g,h,j);
  169.   o.addSurf(j,k,g);
  170.   // Left Face ------------------------
  171.   
  172.   o.addSurf(a,g,k);
  173.   o.addSurf(a,k,f);
  174.   // Right Face --------------------------
  175.   
  176.   o.addSurf(w,d,j);
  177.   o.addSurf(j,h,w);
  178.   //forwar Face -------------------------
  179.  
  180.   o.addSurf(k,j,d);
  181.   o.addSurf(d,f,k);
  182.   // Back Face --------------------------
  183.   
  184.   o.addSurf(a,g,h);
  185.   o.addSurf(h,w,a);
  186.   
  187.   o.facesMove();
  188.   o.edjesMove();

  189. }

  190. Still gives an error at the red part
  191. :(
You have to learn the difference between Boolean (object) and boolean (primitive type).
Java's 8 primitive data-types can't be assigned and compared to null.
Only object/reference variable types can have null.
ty all for helping me
::D



TTTTTTYYYYYYY       AAAAAALLLLLLLL!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!