When we talk about instance variables, the default initial value for a numeric variable is always '0'. Any other variable in your code must be initialized before you can use it.
public class MyClass{
public int x; // 0 by default
public float y: // 0 by default
public MyClass{
int z;
z++; // Error 'z' don't have a default value
}
}
Chat with our AI personalities
If they are instance variables the default initial value is 0. If they are method local variables, they are null and must be initialized to some value before they are used
Default initial value of extern integral type variable is zero otherwise null.
Assigning an initial value to a pointer variable. Example: int *p= NULL;
You must have declared a method which tries to convert a variable/field value into a numeric value but that is not possible. Refer to the line on which the error is found and remove the method which tries to convert the variable/field. Note: Java allows type casting so a string cannot be converted into integer even if a method tries to change the value
It is a variable that can not be changed such as PI.