java.util.Calendar set()方法

java.util.Calendar.set() 方法设置给定日历字段为给定值。

1 语法

public void set(int field,int value)

2 参数

field:被改变的字段。

amount:该值被提供给日历字段。

3 返回值

4 示例1 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.util.Calendar set()方法的例子
 */
import java.util.Calendar;

public class CalendarDemo {

   public static void main(String[] args) {

      // create a calendar
      Calendar cal = Calendar.getInstance();

      // print current year
      System.out.println("Current year is :" + cal.get(Calendar.YEAR));

      // set the year to something else
      cal.set(Calendar.YEAR, 1997);

      // print the result
      System.out.println("Altered year is :" + cal.get(Calendar.YEAR));
   }
}

输出结果为:

Current year is :2012
Altered year is :1997

 

热门文章

优秀文章