How do I deal with a ClassNotLoadedException while debugging?

前端 未结 6 860
悲&欢浪女
悲&欢浪女 2020-11-28 16:22

So I\'m (remotely) debugging a java/jboss application in Eclipse, stepping through line by line. At one point, an array of GridSquare objects (GridSquare

6条回答
  •  忘掉有多难
    2020-11-28 17:10

    //Give a SIZE to the array:
    GridSquare[] squares = GridSquare[this.theGrid.size()];
    
    //Fill each element of the array with the object constructor to avoid the null value
    for(int i=0; i

提交回复
热议问题