2015-04-20 15:36:01 -07:00
|
|
|
|
//: initialization/DefaultConstructor.java
|
2015-05-29 14:18:51 -07:00
|
|
|
|
// <20>2015 MindView LLC: see Copyright.txt
|
2015-04-20 15:36:01 -07:00
|
|
|
|
|
|
|
|
|
class Bird {}
|
|
|
|
|
|
|
|
|
|
public class DefaultConstructor {
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
Bird b = new Bird(); // Default!
|
|
|
|
|
}
|
|
|
|
|
} ///:~
|