Setting the initialized property to YES ensures that the contents of the variable are set to an empty state, or to an initial condition if you have specified that condition. This property is useful only for COBOL programs, as Java™ programs perform these actions automatically when the program is loaded.
myVar INT = 0;The only logical use for this property is to ensure that variables in non-structured COBOL records are set to empty values.