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

20 lines
401 B
Java

// housekeeping/SimpleConstructor2.java
// ©2015 MindView LLC: see Copyright.txt
// Constructors can have arguments.
class Rock2 {
Rock2(int i) {
System.out.print("Rock " + i + " ");
}
}
public class SimpleConstructor2 {
public static void main(String[] args) {
for(int i = 0; i < 8; i++)
new Rock2(i);
}
}
/* Output:
Rock 0 Rock 1 Rock 2 Rock 3 Rock 4 Rock 5 Rock 6 Rock 7
*/