분 단위로 두 Joda-Time DateTime 간의 차이점 찾기
제공된 메소드 내에는 두 개의 Joda-Time DateTime 객체(datetime 및 펀치타임. 이러한 날짜 간의 차이를 분 단위로 확인하려면 다음 단계를 따르세요.
<code class="java">Duration duration = new Duration(datetime, punchTime); long minutes = duration.getStandardMinutes();</code>
Duration 클래스는 시간 간격을 나타내며 일, 시간, 분과 같은 구성 요소를 가져오는 방법을 제공합니다. getStandardMinutes() 메서드를 사용하면 분으로 표현된 두 날짜의 차이를 얻을 수 있습니다.
또는 Joda-Time에서 제공하는 Minutes. MinutesBetween() 메서드를 사용할 수도 있습니다.
<code class="java">long minutes = Minutes.minutesBetween(datetime, punchTime).getMinutes();</code>
두 날짜 사이의 분 수를 직접 계산하는 방법입니다.
위 내용은 두 Joda-Time DateTime의 차이를 분 단위로 계산하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!