0
1

More than 3 years have passed since last update.

Java 7以降でのEnumの差別

Posted at

1.中黒「.」(U+30FB)が使えなくなったため

  例:
  Java 7 以前の場合
   enum 学校 {
      ...
      保育園・幼児園
   }
  Java 7 以後の場合
   enum 学校 {
      ...
      保育園幼児園
   }
    

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1