- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中java.time.YearMonth.plusYears()
方法的一些代码示例,展示了YearMonth.plusYears()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YearMonth.plusYears()
方法的具体详情如下:
包路径:java.time.YearMonth
类名称:YearMonth
方法名:plusYears
[英]Returns a copy of this year-month with the specified period in years added.
This instance is immutable and unaffected by this method call.
[中]返回添加了指定期间(以年为单位)的本年月份的副本。
此实例是不可变的,不受此方法调用的影响。
代码示例来源:origin: com.github.seratch/java-time-backport
/**
* Returns a copy of this year-month with the specified period in years subtracted.
* <p>
* This instance is immutable and unaffected by this method call.
*
* @param yearsToSubtract the years to subtract, may be negative
* @return a {@code YearMonth} based on this year-month with the years subtracted, not null
* @throws DateTimeException if the result exceeds the supported range
*/
public YearMonth minusYears(long yearsToSubtract) {
return (yearsToSubtract == Long.MIN_VALUE ? plusYears(Long.MAX_VALUE).plusYears(1) : plusYears(-yearsToSubtract));
}
代码示例来源:origin: com.sqlapp/sqlapp-core
/**
* 年の加算を実行します
*
* @param date
* 日付型
* @param years
* 加算する年
* @return 年を加算した結果のカレンダー
*/
public static YearMonth addYears(final YearMonth date, final int years) {
if (date == null) {
return null;
}
return date.plusYears(years);
}
代码示例来源:origin: com.github.lgooddatepicker/LGoodDatePicker
/**
* buttonNextYearActionPerformed, This event is called when the next year button is pressed.
* This sets the YearMonth of the calendar to the next year, and redraws the calendar.
*/
private void buttonNextYearActionPerformed(ActionEvent e) {
// We catch and ignore any exceptions at the minimum and maximum of the local date range.
try {
drawCalendar(displayedYearMonth.plusYears(1));
} catch (Exception ex) {
}
}
代码示例来源:origin: com.github.seratch/java-time-backport
/**
* {@inheritDoc}
* @throws DateTimeException {@inheritDoc}
* @throws ArithmeticException {@inheritDoc}
*/
@Override
public YearMonth plus(long amountToAdd, TemporalUnit unit) {
if (unit instanceof ChronoUnit) {
switch ((ChronoUnit) unit) {
case MONTHS: return plusMonths(amountToAdd);
case YEARS: return plusYears(amountToAdd);
case DECADES: return plusYears(Jdk8Methods.safeMultiply(amountToAdd, 10));
case CENTURIES: return plusYears(Jdk8Methods.safeMultiply(amountToAdd, 100));
case MILLENNIA: return plusYears(Jdk8Methods.safeMultiply(amountToAdd, 1000));
case ERAS: return with(ERA, Jdk8Methods.safeAdd(getLong(ERA), amountToAdd));
}
throw new UnsupportedTemporalTypeException("Unsupported unit: " + unit);
}
return unit.addTo(this, amountToAdd);
}
代码示例来源:origin: com.github.lgooddatepicker/LGoodDatePicker
YearMonth choiceYearMonth = displayedYearMonth.plusYears(yearDifference);
String choiceYearMonthString = "" + choiceYearMonth.getYear();
yearPopupMenu.add(new JMenuItem(new AbstractAction(choiceYearMonthString) {
代码示例来源:origin: com.sqlapp/sqlapp-core
/**
* 年の加算を実行します
*
* @param date
* 日付型
* @param years
* 加算する年
* @return 年を加算した結果のカレンダー
*/
@SuppressWarnings("unchecked")
public static <T extends Temporal> T addYears(final T date, final int years) {
if (date == null) {
return null;
}
if (date instanceof LocalDate){
return (T)((LocalDate)date).plusYears(years);
}else if (date instanceof LocalDateTime){
return (T)((LocalDateTime)date).plusYears(years);
}else if (date instanceof OffsetDateTime){
return (T)((OffsetDateTime)date).plusYears(years);
}else if (date instanceof ZonedDateTime){
return (T)((ZonedDateTime)date).plusYears(years);
}else if (date instanceof YearMonth){
return (T)((YearMonth)date).plusYears(years);
}
return (T)date.plus(Duration.of(years, ChronoUnit.YEARS));
}
我已经进行了一些搜索,但要么没有找到合适的示例,要么可能我还不能完全掌握一些概念。 我正在尝试编写一个函数,让用户输入一个日期(从表单中)并在接下来的 50 年中每年返回该日期为星期五的日期。我确信我
本文整理了Java中java.time.Year.plusYears()方法的一些代码示例,展示了Year.plusYears()的具体用法。这些代码示例主要来源于Github/Stackoverfl
本文整理了Java中java.time.YearMonth.plusYears()方法的一些代码示例,展示了YearMonth.plusYears()的具体用法。这些代码示例主要来源于Github/S
本文整理了Java中java.time.ZonedDateTime.plusYears()方法的一些代码示例,展示了ZonedDateTime.plusYears()的具体用法。这些代码示例主要来源于
本文整理了Java中org.threeten.bp.Year.plusYears()方法的一些代码示例,展示了Year.plusYears()的具体用法。这些代码示例主要来源于Github/Stack
我是一名优秀的程序员,十分优秀!