Consider the following class. Which of the following stateme…
Consider the following class. Which of the following statements best describes a property of the field numBooks? public class LibraryBook { private static int numBooks = 0; // THIS FIELD private String title; public LibraryBook(String title) { this.title = title; numBooks += 1; } }
Read Details