You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
1234567891011121314 |
- package Static_Field_Not_Final;
-
-
- public class Static_Field_Not_Final
- {
- /* FLAW: public static fields should be marked final */
- public static final String defaultError = "The value you entered was not understood. Please try again."; // bad 非final的public static字段
-
- public static final String defaultRight = "GOOD"; // good 非final的public static字段
-
- public void bad() { }
-
-
- }
|