Simple implementation of a library system applying concepts like classes and objects. There are two classes:
- Book
- LibraryManager (main class) Book structure:
- Author
- Title
- Publication Year
- Status Book methods:
- Borrow
- Return
- Show information ------------------V2---------------------- New features:
- Implementation of lists to store multiple books
- Menu with 5 options:
- Add book
- Show books
- Search book by name
- Borrow book
- Return book
- Exit
- Java 23
- IntelliJ IDEA Community
- Clone the repository.
- Open the project in IntelliJ IDEA.
- Run
LibraryManager.java.
- Creating classes.
- Creating objects.
- Using objects
- Creating and using arrays