私はJavaの例外処理を試しています。
ドキュメントからこれを行う方法を理解できませんが、やりたいことは、デフォルトのケースがアクティブになったときにスイッチの無効な入力を検出してエラーをスローすることです。これは私の側では間違った論理かもしれませんが、誰かが私を平易な英語で正しい方向に押し進めることができるのだろうか.
char choice = '0';
while (choice != 'q'){
printMenu();
System.in.read(choice);
case '1': DisplayNumAlbums();
case '2': ListAllTitles();
case '3': DisplayAlbumDetail();
case 'q': System.out.println("Invalid input...");
return;
default: System.out.println("Invalid input...");
//Exception handling here
//Incorrect input
}