正規表示式:用來定義匹配規則,匹配一系列符合某個句法規則的字串。
正規表示式的常用方法:
public booleanmatches(string regex)//判斷字串是否匹配給定的規則
public stringsplit(string regex) //根據給定正規表示式的匹配規則,拆分此字串
public stringreplaceall(stringregex,string replacement) //將符合規則的字串內容,全部替換為新字串
date: 日期/時間類
構造方法:
public date()// 系統當前日期時間
public date(long date) 得到乙個2023年1月1日 0點這個時間基礎上,加上引數date 毫秒值對應的日期時間
方法:public long gettime() 獲取日期所對應的毫秒值
dateformat:是日期/時間格式化子類的抽象類, 使用其子類******dateformat 例項化
構造方法:
public ******dateformat() 預設的格式化操作
public ******dateformat(stringpattern) 按照指定的格式,進行日期格式化
日期和時間模式
y 年
m 年中的月份
d 月份中的天數
h 一天中的小時數(0-23)
m 小時中的分鐘數
s 分鐘中的秒數
s 毫秒數
方法:publicfinal string format(date date) 把日期 格式化成字串
publicdate parse(string source) 把日期字串 轉換成 日期物件
calendar:日曆類,可獲取日期中指定欄位的值
方法:publicstatic calendargetinstance() //獲取日期物件
public intget(int field) //獲取時間字段值
public voidadd(int field,int amount) //指定字段增加某值
public final voidset(int field,int value)//設定指定欄位的值
public final dategettime() //獲取該日曆物件轉成的日期物件
第十五章預習
public class yuxi15 else 字串的比較 字串1.equals 字串2 比較兩個字串的值是否相同,返回boolean型別的值.如果相同,則返回真值,否則返回假值.字串1.equalsignorecase 字串2 忽略大小寫比較字串1和字串2.如果都相同則返回真值 否則返回假值 改...
第七十五章
然而這聲慘叫彷彿只喊出半聲,便戛然而止,只見那團灰色濃霧,忽然如同實質般劇烈地蠕動了起來,隨後化成了一條條灰色的毒蛇,濃霧也隨之淡去了不少,在那濃霧的中心有著乙個身影,正是先前的索卡。緊隨著,濃霧中的那一幕讓得秦霄差點嘔了出來,只看那一條條細小灰色毒蛇,瘋狂地鑽進索卡的 之下,這般一來索卡渾身表面都...
知識點總結
1,迴圈中的中斷 continue 跳出此次迴圈,繼續for迴圈 break 跳出當前for迴圈 return 跳出當前方法 2,字串的操作 componentseparatedbystring stringbyreplacingoccurencesofstring withstring iskin...