2015-04-20 15:36:01 -07:00
|
|
|
|
//: initialization/InitialValues2.java
|
2015-05-29 14:18:51 -07:00
|
|
|
|
// <20>2015 MindView LLC: see Copyright.txt
|
2015-04-20 15:36:01 -07:00
|
|
|
|
// 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;
|
|
|
|
|
} ///:~
|