当前位置: 首页>>代码示例>>Java>>正文


Java LocalTime.getMinute方法代码示例

本文整理汇总了Java中java.time.LocalTime.getMinute方法的典型用法代码示例。如果您正苦于以下问题:Java LocalTime.getMinute方法的具体用法?Java LocalTime.getMinute怎么用?Java LocalTime.getMinute使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在java.time.LocalTime的用法示例。


在下文中一共展示了LocalTime.getMinute方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: main

import java.time.LocalTime; //导入方法依赖的package包/类
public static void main(String[] args) {
    LocalTime movieStartTime = LocalTime.parse("21:00:00");
    int commuteMin = 35;
    LocalTime shreyaStartTime = movieStartTime.minusMinutes(commuteMin);
    System.out.println("Start by" + shreyaStartTime + " from the office");

    // second example
    int worldRecord = 10;
    LocalTime raceStartTime = LocalTime.of(8, 10, 55);
    System.out.println("raceStartTime: " + raceStartTime);
    LocalTime raceEndTime = LocalTime.of(8, 11, 11);
    System.out.println("raceEndTime: " + raceEndTime);
    System.out.println("raceEndTime plus 10 seconds: " + raceStartTime.plusSeconds(worldRecord));

    if (raceStartTime.plusSeconds(worldRecord).isAfter(raceEndTime)) {
        System.out.println("New world record");
    } else {
        System.out.println("Try harder");
    }

    // whith
    LocalTime startTime = LocalTime.of(5, 7, 9);
    if (startTime.getMinute() < 30) {
        startTime = startTime.withMinute(0);
    }
    System.out.println(startTime);

}
 
开发者ID:huby,项目名称:java-se8-oca-study-guide,代码行数:29,代码来源:Main.java

示例2: updateValue

import java.time.LocalTime; //导入方法依赖的package包/类
private void updateValue() {
    int hour = 0;
    int minute = 0;
    try {
        hour = Math.max(0, Math.min(23, Integer.parseInt(hourField.getText())));
        minute = Math.max(0, Math.min(59, Integer.parseInt(minuteField.getText())));
    } catch (NumberFormatException ex) {
        // do nothing
    }

    /*
     * LocalTime is immutable, hence we have to create new instances over
     * and over again, which causes property change events. So we have to
     * have this check here to ensure that the value has really changed. And
     * we only care about hours and minutes, so we are not using
     * LocalTime.equals().
     */
    LocalTime oldTime = getSkinnable().getValue();
    LocalTime newTime = LocalTime.of(hour, minute);

    if (oldTime != null && newTime != null) {
        if (!(oldTime.getHour() == newTime.getHour() && oldTime.getMinute() == newTime.getMinute())) {
            getSkinnable().setValue(newTime);
        }
    } else if (newTime == null) {
        getSkinnable().setValue(null);

    }
}
 
开发者ID:dlemmermann,项目名称:CalendarFX,代码行数:30,代码来源:TimeFieldSkin.java

示例3: actionPerformed

import java.time.LocalTime; //导入方法依赖的package包/类
@Override
public void actionPerformed(ActionEvent e) {
	LocalTime localeTime = LocalTime.now();

	int hour = localeTime.getHour();
	int minute = localeTime.getMinute();
	int second = localeTime.getSecond();

	timeText.setText(String.format("%02d : %02d : %02d", hour, minute, second));
}
 
开发者ID:AitorB,项目名称:POPBL_V,代码行数:11,代码来源:Time.java

示例4: test_time_print

import java.time.LocalTime; //导入方法依赖的package包/类
@SuppressWarnings("deprecation")
@Test(dataProvider="time")
public void test_time_print(LocalTime time, FormatStyle timeStyle, int timeStyleOld, Locale locale) {
    DateFormat old = DateFormat.getTimeInstance(timeStyleOld, locale);
    Date oldDate = new Date(1970, 0, 0, time.getHour(), time.getMinute(), time.getSecond());
    String text = old.format(oldDate);

    DateTimeFormatter f = builder.appendLocalized(null, timeStyle).toFormatter(locale);
    String formatted = f.format(time);
    assertEquals(formatted, text);
}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:12,代码来源:TCKLocalizedPrinterParser.java

示例5: test_time_parse

import java.time.LocalTime; //导入方法依赖的package包/类
@SuppressWarnings("deprecation")
@Test(dataProvider="time")
public void test_time_parse(LocalTime time, FormatStyle timeStyle, int timeStyleOld, Locale locale) {
    DateFormat old = DateFormat.getTimeInstance(timeStyleOld, locale);
    Date oldDate = new Date(1970, 0, 0, time.getHour(), time.getMinute(), time.getSecond());
    String text = old.format(oldDate);

    DateTimeFormatter f = builder.appendLocalized(null, timeStyle).toFormatter(locale);
    TemporalAccessor parsed = f.parse(text, pos);
    assertEquals(pos.getIndex(), text.length());
    assertEquals(pos.getErrorIndex(), -1);
    assertEquals(LocalTime.from(parsed), time);
}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:14,代码来源:TCKLocalizedPrinterParser.java

示例6: isEqual

import java.time.LocalTime; //导入方法依赖的package包/类
private static boolean isEqual(LocalTime lt, java.sql.Time t) {
    return lt.getHour() == t.getHours() &&
           lt.getMinute() == t.getMinutes() &&
           lt.getSecond() == t.getSeconds();
}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:6,代码来源:JavatimeTest.java

示例7: valueOf

import java.time.LocalTime; //导入方法依赖的package包/类
/**
 * Obtains an instance of {@code Time} from a {@link LocalTime} object
 * with the same hour, minute and second time value as the given
 * {@code LocalTime}.
 *
 * @param time a {@code LocalTime} to convert
 * @return a {@code Time} object
 * @exception NullPointerException if {@code time} is null
 * @since 1.8
 */
@SuppressWarnings("deprecation")
public static Time valueOf(LocalTime time) {
    return new Time(time.getHour(), time.getMinute(), time.getSecond());
}
 
开发者ID:madHEYsia,项目名称:ClassroomFlipkart,代码行数:15,代码来源:Time.java

示例8: valueOf

import java.time.LocalTime; //导入方法依赖的package包/类
/**
 * Obtains an instance of {@code Time} from a {@link LocalTime} object
 * with the same hour, minute and second time value as the given
 * {@code LocalTime}. The nanosecond field from {@code LocalTime} is
 * not part of the newly created {@code Time} object.
 *
 * @param time a {@code LocalTime} to convert
 * @return a {@code Time} object
 * @exception NullPointerException if {@code time} is null
 * @since 1.8
 */
@SuppressWarnings("deprecation")
public static Time valueOf(LocalTime time) {
    return new Time(time.getHour(), time.getMinute(), time.getSecond());
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:16,代码来源:Time.java


注:本文中的java.time.LocalTime.getMinute方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。