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

12 lines
238 B
Java

// housekeeping/DefaultConstructor.java
// Š2015 MindView LLC: see Copyright.txt
class Bird {}
public class DefaultConstructor {
public static void main(String[] args) {
Bird b = new Bird(); // Default!
}
}
/* Output: (None) */