18 lines
258 B
Java
18 lines
258 B
Java
package com.oracle.associate.java8.test;
|
|
|
|
public class Tree {
|
|
public final static long numberOfTrees;
|
|
public final double height;
|
|
|
|
static {}
|
|
{
|
|
final int initHeight = 2;
|
|
height = initHeight;
|
|
}
|
|
|
|
static {
|
|
numberOfTrees = 100;
|
|
//height = 4;
|
|
}
|
|
}
|