java calendar_Java Calendar after()方法與示例

java calendar

Calendar類after()方法 (Calendar Class after() method)

  • after() method is available in java.util package.

    after()方法在java.util包中可用。

  • after() method is used to check whether this calendar time is after the time denoted by the given Object's time or not.

    after()方法用于檢查此日歷時間是否在給定Object的時間所表示的時間之后。

  • after() method is a non-static method, it is accessible with the class object and if we try to access the method with the class name then we will get an error.

    after()方法是一種非靜態方法,可通過類對象訪問,如果嘗試使用類名稱訪問該方法,則會收到錯誤消息。

  • after() method does not throw an exception at the checking this calendar time with the given time.

    after()方法在檢查給定時間的日歷時間時不會引發異常。

Syntax:

句法:

    public boolean after(Object time);

Parameter(s):

參數:

  • Object time – represents the time to be compared with this calendar time.

    對象時間 –表示要與此日歷時間進行比較的時間。

Return value:

返回值:

The return type of the method is boolean, it returns true when the given time is before this calendar time otherwise it returns false.

方法的返回類型為boolean ,如果給定時間早于日歷時間,則返回true ,否則返回false

Example:

例:

// Java Program to demonstrate the example of
// boolean after(Object) method of Calendar
import java.util.*;
public class AfterOfCalendar {
public static void main(String[] args) {
// Instantiating two Calendar object
Calendar curr_ca = Calendar.getInstance();
Calendar after_ca = Calendar.getInstance();
// By using add() method is to add the 
// 10 months to the current calendar
after_ca.add(Calendar.MONTH, 10);
// Display current and after calendar
System.out.println("curr_ca.getTime(): " + curr_ca.getTime());
System.out.println("after_ca.getTime(): " + after_ca.getTime());
// By using after() method is to check
// the after_ca time is after the curr_ca
boolean status = after_ca.after(curr_ca);
//Display Result
System.out.println("after_ca.after(curr_ca): " + status);
}
}

Output

輸出量

curr_ca.getTime(): Thu Jan 23 11:12:36 GMT 2020
after_ca.getTime(): Mon Nov 23 11:12:36 GMT 2020
after_ca.after(curr_ca): true

翻譯自: https://www.includehelp.com/java/calendar-after-method-with-example.aspx

java calendar

本文來自互聯網用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務,不擁有所有權,不承擔相關法律責任。
如若轉載,請注明出處:http://www.pswp.cn/news/541105.shtml
繁體地址,請注明出處:http://hk.pswp.cn/news/541105.shtml
英文地址,請注明出處:http://en.pswp.cn/news/541105.shtml

如若內容造成侵權/違法違規/事實不符,請聯系多彩編程網進行投訴反饋email:809451989@qq.com,一經查實,立即刪除!

相關文章

rust拆掉墻_rust怎么拆自己的墻

rust游戲中可以建造自己的家,但是當建墻的時候總會覺得擺放不好,所以就需要拆除,但是要怎么拆自己的墻呢,下面小編就來為大家介紹一下吧!rust怎么拆自己的墻要先放上領地柜,然后在墻剛建好的幾分鐘內錘子右…

Java BigDecimal add()方法與示例

BigDecimal類的add()方法 (BigDecimal Class add() method) Syntax: 句法: public BigDecimal add(BigDecimal val);public BigDecimal add(BigDecimal val, MathContext ma_co);add() method is available in java.math package. add()方法在java.math包中可用。 …

Analytics API and Customer Data Platform | Segment

Analytics API and Customer Data Platform | Segment

sheets.add示例_Java ArrayDeque add()方法與示例

sheets.add示例ArrayDeque類add()方法 (ArrayDeque Class add() method) add() Method is available in java.lang package. add()方法在java.lang包中可用。 add() Method is used to add the given element at the end of the deque. add()方法用于在雙端隊列的末尾添加給定元…

arcgis出界址點成果表_界址點成果表打印

#coding: UTF-8importarcpyimportosimporttypesimportstringimportshutilimportsysimportreimportopenpyxl#ws是一個xls的工作表#mode是替換模型,1完全替換,2模糊替換,3 追加替換defreplacexls(ws,mode, text, replaceText):rowsws.max_rowco…

基于Kubernetes的分布式壓力測試方案

壓力測試是用來檢測系統承載能力的有效手段。在系統規模較小的時候,在一臺空閑的服務器上使用[ab],[wrk],[siege]等工具發起一定量的并發請求即可得到一個初步的測試結果。但在系統復雜度逐步提高,特別是引入了負載均衡&#xff0…

旋轉數組 java_數組中左旋轉的Java程序

旋轉數組 javaLet’s take an array a[3,4,5,1,0] here we can see after 1 rotation the position of the array element will be a [4,5,1,0,3], after 2 left rotations a[5,1,0,3,4] and so on hence we can see after d rotation the position of the ith element will be…

The output path is not specified for module XXX

新建項目啟動時候:The output path is not specified for module XXX 沒有為模塊XXX指定輸出路徑。 解決方案 第一步 第二步 第三步

erwin模型導入mysql_使用erwin進行mysql建模

1,定義數據字典,把需要用到的數據類型創建好2,在物理模式下,設置數據字典,修改comment為%AttName這樣會默認使用邏輯模式下,實體屬性的名稱作為字段的注釋3,物理模式下選擇database->pre & post scr…

EditText焦點問題

1、在一個Activity中加入一個EditText后,每次進入這個Activity時輸入法都會自己主動彈出來。非常煩,找了些資料,在此記下解決的方法: 方法:在EditText的父控件中獲得焦點。這樣焦點就不會自己主動跑到EditText上了。 代…

stl中copy()函數_std :: copy()函數以及C ++ STL中的示例

stl中copy()函數C STL std :: copy()函數 (C STL std::copy() function) copy() function is a library function of algorithm header, it is used to copy the elements of a container, it copies the elements of a container from given range to another container from…

phpmyadmin管理mysql_用phpMyAdmin管理MySQL數據庫_MySQL

phpmyadmin學會使用基于Web數據庫的管理工具phpMyAdmin。如果使用合適的工具,MySQL數據庫的管理就會為得相當簡單。應用MySQL命令行方式需要對MySQL知識非常熟悉,對SQL語言也是同樣的道理。不僅如此,如果數據庫的訪問量很大,列表中…

Linux網絡那點事

跨平臺系列匯總:http://www.cnblogs.com/dunitian/p/4822808.html#linux 之前的之前說過網絡自連接的配置(CentOS服務器網絡配置:http://www.cnblogs.com/dunitian/p/4975830.html),這次和這個類似 這種方法適用于Cent…

機器學習中的馬爾可夫隨機場模型

馬爾可夫隨機場 (Markovs Random Fields) Markov random model is a model which use an undirected graph. Undirected graphical models edge represents the potential between two variables, syntactically, Factorization distribution probabilities between variable. …

python爬蟲反爬 css 知乎 專欄_反反爬蟲系列(四)

過完年,好了,咱們接著更新反反爬蟲系列至于之前有朋友表示出一下1688呀,x寶的反反爬蟲說實在的,阿里系的反爬蟲很厲害,我自愧不能搞定。比如x寶的登錄,用了selenium chrome的朋友都會遇到滑條拖動驗證失敗…

javaweb中mysql數據庫的回滾操作代碼

2019獨角獸企業重金招聘Python工程師標準>>> 在mysql中創建用戶賬戶數據庫(注意,count不能為負數,要設置無符號型) 添加數據 下面我們得到connection對象開始進行事務提交和回滾的操作 package com.lyb.test; import s…

ruby array_Ruby中帶有示例的Array.shuffle方法

ruby arrayArray.shuffle方法 (Array.shuffle Method) In this article, we will study about Array.shuffle method. You all must be thinking the method must be doing something which is related to shuffling of elements or objects in the Array instance. It is not …

【147天】尚學堂高淇Java300集視頻精華筆記(108-109)

第108集:容器equals和hashcodeJDK源代碼分析 本集知識點 Java中規定,若兩個對象equals比較后內容相等(為true),則hashCode必須相等,反之不然。【原因見內存分析圖】hashCode與equals方法必須同時重寫,且必須…

ruby hash方法_Ruby中帶有示例的Hash.key?(obj)方法

ruby hash方法Hash.key?(obj)方法 (Hash.key?(obj) Method) In this article, we will study about Hash.key?(obj) Method. The working of the method cant be assumed because of its quite a different name. Let us read its definition and understand its …

python迭代器與生成器答案_史上最全 Python 迭代器與生成器

原標題:史上最全 Python 迭代器與生成器作者:浪子燕青鏈接:http://www.langzi.fun/迭代器與生成器.html迭代器與可迭代對象概念迭代器:是訪問數據集合內元素的一種方式,一般用來遍歷數據,但是他不能像列表一…