Java编程思想(01)——重构让代码更简洁(一)

减少重复计算

重构前

if(list != null && list.size() > 0){
  for(int i = 0; i < list.size(); i++){
    //skip...
  }
}

重构后

if(list != null){
  for(int i = 0, len = list.size(); i < len; i++){
    //skip...
  }
}

何时需要何时创建

重构前

public static Date parseDate(String date) throws ParseException {
  SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");

  if ((date == null) || (date.equals(""))) {
    return null;
  } 
  else {
    try {
      return formatter.parse(date);
    } catch (ParseException pe) {
      throw new ParseException(pe.getMessage(), pe.getErrorOffset());
    }
  }
}

重构后

public static Date parseDate(String date) throws ParseException {
  if ((date == null) || (date.equals(""))) {
    return null;
  } 
  else {
    try {
      SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
      return formatter.parse(date);
    } catch (ParseException pe) {
      throw new ParseException(pe.getMessage(), pe.getErrorOffset());
    }
  }
}

利用已有的计算结果

重构前

public static final String DAY = "DAY";
public static final String MONTH = "MONTH";
public static final String YEAR = "YEAR";
public static final String HOUR = "HOUR";
public static final String MINUTE = "MINUTE";
public static final String SECOND = "SECOND";
public static final String WEEK = "WEEK";

public long toMilliseconds(String unit) {
  if (unit == null) {
    return 0L;
  } else if (unit.equals(SECOND)) {
    return 1 * 1000L;
  } else if (unit.equals(MINUTE)) {
    return 60 * 1000L;
  } else if (unit.equals(HOUR)) {
    return 60 * 60 * 1000L;
  } else if (unit.equals(DAY)) {
    return 24 * 60 * 60 * 1000L;
  } else if (unit.equals(WEEK)) {
    return 7 * 24 * 60 * 60 * 1000L;
  } else if (unit.equals(MONTH)) {
    return 30 * 24 * 60 * 60 * 1000L;
  } else if (unit.equals(YEAR)) {
    return 365 * 24 * 60 * 60 * 1000L;
  } else {
    return 0L;
  }
}

重构后

public class Unit {
  private static final long SECOND_MILLIS = 1000;
  private static final long MINUTE_MILLIS = 60 * SECOND_MILLIS;
  private static final long HOUR_MILLIS = 60 * MINUTE_MILLIS;
  private static final long DAY_MILLIS = 24 * HOUR_MILLIS;
  private static final long WEEK_MILLIS = 7 * DAY_MILLIS;
  private static final long MONTH_MILLIS = 30 * DAY_MILLIS;
  private static final long YEAR_MILLIS = 365 * DAY_MILLIS;
  private static final long CENTURY_MILLIS = 100 * YEAR_MILLIS;

  static Map<String, Unit> units = new HashMap<String, Unit>();

  public static final Unit SECOND = new Unit(SECOND_MILLIS, "SECOND");
  public static final Unit MINUTE = new Unit(MINUTE_MILLIS, "MINUTE");
  public static final Unit HOUR = new Unit(HOUR_MILLIS, "HOUR");
  public static final Unit DAY = new Unit(DAY_MILLIS, "DAY");
  public static final Unit WEEK = new Unit(WEEK_MILLIS, "WEEK");
  public static final Unit MONTH = new Unit(MONTH_MILLIS, "MONTH");
  public static final Unit YEAR = new Unit(YEAR_MILLIS, "YEAR");
  public static final Unit CENTURY = new Unit(CENTURY_MILLIS, "CENTURY");

  static {
    units.put(SECOND.name, SECOND);
    units.put(MINUTE.name, MINUTE);
    units.put(HOUR.name, HOUR);
    units.put(DAY.name, DAY);
    units.put(WEEK.name, WEEK);
    units.put(MONTH.name, MONTH);
    units.put(YEAR.name, YEAR);
    units.put(CENTURY.name, CENTURY);
  }

  private long millis;
  private String name;

  private Unit(long millis, String name) {
    this.millis = millis;
    this.name = name;
  }

  public long getMillis() {
    return millis;
  }

  public String getName() {
    return name;
  }

  public String toString() {
    StringBuffer buffer = new StringBuffer();
    buffer.append(this.getName());
    buffer.append("[");
    buffer.append(this.getMillis());
    buffer.append("]");
    return buffer.toString();
  }
}

public long toMilliseconds(Unit unit) {
  return unit.getMillis();
}

替换switch结构

重构前

public boolean isLeap(int year) {
  return (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0);
}

public static int getMonthDays(int year, int month) {
  int numberDays = 0;

  switch (month) {
    case 1:
    case 3:
    case 5:
    case 7:
    case 8:
    case 10:
    case 12:
      numberDays = 31;
      break;

    case 4:
    case 6:
    case 9:
    case 11:
      numberDays = 30;
      break;

    case 2:
      numberDays = isLeap(year) ? 29 : 28;
      break;
  }

  return numberDays;
}

重构后

public boolean isLeap(int year) {
  return (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0);
}

private int getFebruaryDays(int year) {
  return this.isLeap(year) ? 29 : 28;
}

public int getMonthDays(int year, int month) {
  int[] months = new int[] { 31, this.getFebruaryDays(year), 31, 30, 31, 30,
				31, 31, 30, 31, 30, 31 };

  return months[month];
}

避免参数赋值

重构前

public Date getStartTime(Date date) {
  date.setMinutes(fromMinute);
  date.setDate(fromHour);
  date.setDate(fromHour);
  date.setSeconds(0);

  return date;
}

重构后

public Date getStartTime(final Date date) {
  Calendar calendar = Calendar.getInstance();
  calendar.setTime(date);
  calendar.set(Calendar.HOUR_OF_DAY, fromHour);
  calendar.set(Calendar.MINUTE, fromMinute);
  calendar.set(Calendar.SECOND, 0);

  return calendar.getTime();
}


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值