1

我希望用一个更好的不太详细的过程来替换以下函数,以从字符串中确定数字月份值。有谁知道是否有可用于此的日期/日期时间函数?我没有注意到一个可以满足我的需要。

代码中的文本字符串正是我接收它们的方式。

提前感谢您的帮助。

private static Integer convertMonthTextToNumber(String matrixMonth){
    if(matrixMonth == 'January'){
        return 1;   
    }else if(matrixMonth == 'February'){
        return 2;   
    }else if(matrixMonth == 'March'){
        return 3;   
    }else if(matrixMonth == 'April'){
        return 4;   
    }else if(matrixMonth == 'May'){
        return 5;       
    }else if(matrixMonth == 'June'){            
        return 6;   
    }else if(matrixMonth == 'July'){
        return 7;   
    }else if(matrixMonth == 'August'){
        return 8;   
    }else if(matrixMonth == 'September'){
        return 9;   
    }else if(matrixMonth == 'October'){
        return 10;  
    }else if(matrixMonth == 'November'){
        return 11;  
    }else{
        return 12;
    }
}
4

1 回答 1

4

这个怎么样:

private static Map<String, Integer> monthsMap = new Map<String, Integer>{
  "January"  => 1,
  "February" => 2,
  etc.
};

private static Integer convertMonthTextToNumber(String month)
{
  return monthsMap.get( month );
}
于 2013-08-13T17:44:00.633 回答