這篇文章主要介紹了java中date類與string類的示例分析,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
成都創(chuàng)新互聯(lián)專注于網(wǎng)站建設(shè)|網(wǎng)站維護(hù)公司|優(yōu)化|托管以及網(wǎng)絡(luò)推廣,積累了大量的網(wǎng)站設(shè)計(jì)與制作經(jīng)驗(yàn),為許多企業(yè)提供了網(wǎng)站定制設(shè)計(jì)服務(wù),案例作品覆蓋LED顯示屏等行業(yè)。能根據(jù)企業(yè)所處的行業(yè)與銷售的產(chǎn)品,結(jié)合品牌形象的塑造,量身策劃品質(zhì)網(wǎng)站。
Date類用來(lái)指定日期和時(shí)間,其構(gòu)造函數(shù)及常用方法如下:
publicDate()
從當(dāng)前時(shí)間構(gòu)造日期時(shí)間對(duì)象。
publicStringtoString()
轉(zhuǎn)換成字符串。
publiclonggetTime()
返回自新世紀(jì)以來(lái)的毫秒數(shù),可以用于時(shí)間計(jì)算。
【例3.10】測(cè)試執(zhí)行循環(huán)花費(fèi)的時(shí)間(數(shù)量級(jí)為毫秒),具體時(shí)間情況如圖3.9所示。源程序代碼如下:
//程序文件名為UseDate.java import java.util.Date; public class UseDate { public static void main(String[] args) { Date dOld = new Date(); long lOld = dOld.getTime(); System.out.println("循環(huán)前系統(tǒng)時(shí)間為:" +dOld.toString()); int sum = 0; for (int i=0; i<100; i++) { sum += i; } Date dNew = new Date(); long lNew = dNew.getTime(); System.out.println("循環(huán)后系統(tǒng)時(shí)間為:" +dNew.toString()); System.out.println("循環(huán)花費(fèi)的毫秒數(shù)為:" + (lNew - lOld)); } }
結(jié)果顯示:
String類
String類用于操作非數(shù)值型字符串,它提供了七類方法操作,分別為字符串創(chuàng)建、字符串長(zhǎng)度、字符串比較、字符串檢索、字符串截取、字符串運(yùn)算和數(shù)據(jù)類型轉(zhuǎn)換。
2. 字符串長(zhǎng)度
public int length()
返回字符串的長(zhǎng)度。
3. 字符串比較
public boolean equals(Object anObject)
比較字符串是否與anObject代表的字符串相同(區(qū)分大小寫)。
public boolean equalsIgnoreCase(String anotherString)
比較字符串是否與anotherString相同(不區(qū)分大小寫)。
1. 字符串創(chuàng)建
public String()
構(gòu)造一個(gè)空字符串。
public String(char[] value)
使用字符數(shù)組value中的字符以構(gòu)造一個(gè)字符串。
public String(String original)
使用原字符串original的拷貝以構(gòu)造一個(gè)新字符串。
4. 字符串檢索
public int indexOf(String str)
返回一個(gè)字符串中str第一次出現(xiàn)所在的位置。
public int indexOf(String str, int fromIndex)
返回從fromIndex開始字符串str出現(xiàn)所在的位置。
5. 字符串截取
public String substring(int beginIndex, int endIndex)
返回benginIndex到endIndex之間的字符串。
6. 字符串運(yùn)算
運(yùn)算符為“+”,表示連接運(yùn)算。下面的行語(yǔ)句輸出連接的字符串。
System.out.println("Hashtable:" + hScore.toString());
【例3.11】操作字符串,輸出結(jié)果如圖3.10所示。源程序代碼如下:
//程序文件名為TestString.java public class TestString { public static void main(String[] args) { String str = new String("The substring begins at the specified beginIndex."); String str1 = new String("string"); String str2 = new String(); int size = str.length();//字符串長(zhǎng)度 int flag = str.indexOf("substring"); str2 = str.substring(flag,flag + 9);//取子字符串 System.out.println("字符串" + str + "\n總長(zhǎng)度為:" + size); if(str1.equals(str2))//判斷是否相等 System.out.println("截取的字符串為:" + str1); else System.out.println("截取的字符串為:" + str2); } }
結(jié)果顯示:
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“java中date類與string類的示例分析”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來(lái)學(xué)習(xí)!
新聞名稱:java中date類與string類的示例分析
文章路徑:http://jinyejixie.com/article32/gpihsc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站改版、品牌網(wǎng)站制作、移動(dòng)網(wǎng)站建設(shè)、定制網(wǎng)站、微信公眾號(hào)、建站公司
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)