📜  Java中的 DayOfWeek getValue() 方法及示例

📅  最后修改于: 2022-05-13 01:55:44.483000             🧑  作者: Mango

Java中的 DayOfWeek getValue() 方法及示例

Java .time.DayOfWeekgetValue()方法是Java中的一个内置函数,它返回分配给一周中7 天的整数值,即周一、周二、周三、周四、周五、周六和周日。 int 值遵循 ISO-8601 标准,从 1(星期一)到 7(星期日)。

方法声明:

public int getValue()

句法:

int val = DayOfWeekObject.getValue()

参数:此方法不接受任何参数。

返回值:函数返回星期几的int值,例如1代表星期一,2代表星期二,以此类推。

下面的程序说明了上述方法:
方案一:

// Java Program Demonstrate getValue()
// method of DayOfWeek
import java.time.*;
import java.time.DayOfWeek;
  
class DayOfWeekExample {
    public static void main(String[] args)
    {
        // Set a local date whose day is found
        LocalDate localDate
            = LocalDate.of(1947,
                           Month.AUGUST, 15);
  
        // Find the day from the local date
        DayOfWeek dayOfWeek
            = DayOfWeek.from(localDate);
  
        // Printing the day of the week
        // and its Int value
        System.out.println("Day of the Week on"
                           + " 15th August 1947 - "
                           + dayOfWeek.name());
  
        int val = dayOfWeek.getValue();
  
        System.out.println("Int Value of "
                           + dayOfWeek.name()
                           + " - " + val);
    }
}
输出:
Day of the Week on 15th August 1947 - FRIDAY
Int Value of FRIDAY - 5

方案二:

// Java Program Demonstrate getValue()
// method of DayOfWeek
import java.time.*;
import java.time.DayOfWeek;
  
class DayOfWeekExample {
    public static void main(String[] args)
    {
        // Set a local date whose day is found
        LocalDate localDate
            = LocalDate.of(2015,
                           Month.JULY, 13);
  
        // Find the day from the local date
        DayOfWeek dayOfWeek
            = DayOfWeek.from(localDate);
  
        // Printing the day of the week
        // and its Int value
        System.out.println("Day of the Week on"
                           + " 13th July 2015 - "
                           + dayOfWeek.name());
  
        int val = dayOfWeek.getValue();
  
        System.out.println("Int Value of "
                           + dayOfWeek.name()
                           + " - " + val);
    }
}
输出:
Day of the Week on 13th July 2015 - MONDAY
Int Value of MONDAY - 1

参考: https: Java/time/DayOfWeek.html#getValue–