โ Back to Classes
Question 115
Triple Constructor - Book Info
Triple Constructor - Book Info
Create a class named BookInfo with three private members: String title, String author, int year.
Requirements:
1. Create a constructor BookInfo(String title, String author, int year) that sets all three fields.
2. Create a public toString() that returns: "title - author (year)".
IMPORTANT: Do NOT write a main method. A hidden Main will create new BookInfo("Dune", "Herbert", 1965) and print the object.
Expected Output:
Dune - Herbert (1965)
Expected Output:
Dune - Herbert (1965)
Topics:
Classes
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.