記憶分類java

2021-07-30 15:06:37 字數 2153 閱讀 9679

string

1、增2、刪

3、改

陣列轉換

string(char,offset,count):將字元陣列中的一部分轉成字串。

tochararray():

string(byte)

getbytes()

string.valueof(3);

替換string

replace(oldchar,newchar);

切割string arr = s.split(",")

大小寫string touppercase();

string tolowercase();

string

trim();

4、查

1、獲取。

substring(begin,end);

length():獲取長度

charat();

indexof(int ch)

str.indexof('m',3)//從第三個開始查

2、判斷

isempty():

startswith(str)

equals(str);

equalsignorecase();

compareto(string);

集合

list

1、增

add(e); 

addall(collection)

list特有

add(index,element);

addall(index,collection);

2、刪

remove(e); 

removeall(collection);

clear();

list特有

remove(index);

3、改

toarray();

list特有

set(index,element);

4、查

1、獲取

iterator(); 迭代器

size();

retainall();獲取交集

2,判斷。

isempty();

contains(e);

list特有

get(index)

: sublist(from,to);

listiterator();

int indexof(obj)

:獲取指定元素的位置。

listiterator listiterator();

linkedlist:

特有方法: 

addfirst();

addlast();已被下面替換

offerfirst();

offerlast();

getfirst();

getlast();已被下面替換

peekfirst();

peeklast();

removefirst();

removelast(); 已被下面替換

pollfirst();

polllast();

hashset

treeset

hashmap

1、增

put(k key, v value) 

putall(map

2、刪

clear

()remove

(object key)

3、改

4、查

1,獲取。

get(object key)

size()

values()

entryset()

keyset()

2判斷 containsvalue(object value)

containskey(object key)

isempty()

Java專案 許可權分類

許可權分類可以分成兩種 第一種,功能性許可權。什麼叫功能性許可權呢?就是說乙個使用者,在該系統上,可以使用那些功能,比如在乙個圖書管理系統中,管理員許可權就是可以使用所有功能,包括管理所有子賬號的增刪改,而子賬號只能更改自己的資訊。所以管理員比子賬號多出了乙個賬號管理許可權,這種型別的許可權就是功能...

Java內部類的分類

內部類按照使用上可以分為四種情形 類級 成員式,有 static 修飾 物件級 成員式,普通,無 static 修飾 本地內部類 區域性式 匿名級 區域性式 內部類可以作為外部類的成員,示例如下 public class outer1 public void testtheinner 成員式內部類如...

成績分類 總結(Java)

描述 對0到100分的成績按等級進行分類,其中 範圍類別 0 59分 不及格60 69分 及格70 79分 中等80 89分 良好90 100分優秀 說明 這裡介紹了三種方法對分數score進行分類,思路逐漸精煉 方法一 if else 處理 if score 90 system.out.print...