22 lines
521 B
Java
22 lines
521 B
Java
// housekeeping/SimpleConstructor2.java
|
|
// (c)2016 MindView LLC: see Copyright.txt
|
|
// We make no guarantees that this code is fit for any purpose.
|
|
// Visit http://OnJava8.com for more book information.
|
|
// 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
|
|
*/
|