My question is,can i check a place if null,or set a place to null in two dimensional String array with my way.
String [][] xx=new String [][]
public void set(int a,int b)
{
xx[a][b]=null;//setting null
}
.
.
.
.
.
if(xx[a][b]==null)//check if null
///some codes
İs it possible?Or if wrong,how to do it.?Regards..