Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

set integer array value to null java

//null or NULL won't work in java, so you can set int value to -1 or 0.
//0 is dafault;
int [] a= {1,2,3}
a[0] = 0;  //now a becomes (0,1,3)
 
PREVIOUS NEXT
Tagged: #set #integer #array #null #java
ADD COMMENT
Topic
Name
7+6 =