Variable Declarations
Java:
<datatype> <identifier>
or (optional initialization at declaration)
<data type> <identifier> = <init value>
int x;
x = 3;
int y = 5;
Previous slide
Next slide
Back to first slide
View graphic version