OnJava8-Examples/housekeeping/InitialValues2.java
2015-09-07 11:44:36 -06:00

15 lines
293 B
Java

// housekeeping/InitialValues2.java
// ©2015 MindView LLC: see Copyright.txt
// Providing explicit initial values.
public class InitialValues2 {
boolean bool = true;
char ch = 'x';
byte b = 47;
short s = 0xff;
int i = 999;
long lng = 1;
float f = 3.14f;
double d = 3.14159;
}