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.

Obsolete_Method.java 319 B

3 years ago
1234567891011121314151617
  1. package Obsolete_Method;
  2. public class Obsolete_Method {
  3. public String bad() {
  4. String data;
  5. data = System.getenv("ADD"); // bad 废弃的方法
  6. return data;
  7. }
  8. public String good() {
  9. String data;
  10. data = System.getProperty("ADD"); // good 废弃的方法
  11. return data;
  12. }
  13. }

No Description

Contributors (1)