-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExercise1.java
34 lines (25 loc) · 888 Bytes
/
Exercise1.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import java.util.Arrays;
/**
* @author viktorvoltz
*/
class BerylliumSphere {
private static long counter;
private final long id = counter++;
public String toString() {
return "Sphere " + id;
}
}
public class Exercise1 {
public static String arrayMethod(BerylliumSphere[] berylliumSpheres) {
return Arrays.toString(berylliumSpheres);
}
public static void main(String[] args) {
//arg passed dynamically
arrayMethod(new BerylliumSphere[] { new BerylliumSphere(), new BerylliumSphere(), new BerylliumSphere() });
BerylliumSphere[] b = {new BerylliumSphere()}; //ordinary aggregate initialization
BerylliumSphere[] d;
d = new BerylliumSphere[]{new BerylliumSphere()};//dynamic aggregate initialization
System.out.println(arrayMethod(b));
System.out.println(arrayMethod(d));
}
}