Advertisement
deushdezt

23/03/2023 - Book's array

Mar 23rd, 2023 (edited)
1,275
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.54 KB | Source Code | 0 0
  1. private static List<Book> library = new ArrayList<>();
  2.    
  3.     static {
  4.         library.add(new Book("0261102303", "Lord of the Rings"));
  5.         library.add(new Book("0007441428", "Game of Thrones"));
  6.         library.add(new Book("0747581088", "Harry Potter and the Half-Blood Prince"));
  7.         library.add(new Book("1401248195", "Watchmen"));
  8.         library.add(new Book("030788743X", "Ready player one"));
  9.         library.add(new Book("843760494X", "Cien Años de Soledad"));
  10.         library.add(new Book("0553804367", "A Briefer History of Time"));
  11.     }
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement