(String[] args)
| 15 | |
| 16 | public class FillingLists { |
| 17 | public static void main(String[] args) { |
| 18 | List<StringAddress> list = new ArrayList<>( |
| 19 | Collections.nCopies(4, |
| 20 | new StringAddress("Hello"))); |
| 21 | System.out.println(list); |
| 22 | Collections.fill(list, |
| 23 | new StringAddress("World!")); |
| 24 | System.out.println(list); |
| 25 | } |
| 26 | } |
| 27 | /* Output: |
| 28 | [StringAddress@19e0bfd Hello, StringAddress@19e0bfd |