Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はJavaが初めてで、列挙型を使用してswitchステートメントをセットアップしようとしています。列挙型の宣言についてですが、「タイプの不正な開始」などのコンパイルエラーが発生するため、次のような名前が適切かどうかという質問がありますか?
public enum Types { <CD>, <Title> }
いいえ、列挙型定数は、すべての Java識別子と同様に、文字、通貨文字 ($)、または接続文字 (最も一般的なのは ) で始まる必要があり_ます。
_