day21 學習總結

2021-10-18 04:07:49 字數 1904 閱讀 7754

string s = new string();//建立乙個空的字串序列

string s = new string("hello");//建立乙個內容為"hello"的字串

string s = "hello";//建立乙個內容為"hello"的字串

string s = new string(char chars);//通過字元陣列建立乙個字串

string s = new string(char chars ; int offset,int length);//通過字元陣列建立字串,以offset為第乙個字元,長度為length

string s = new string(byte bytes);//通過位元組陣列建立字串

string s = new string(byte bytes , int offset,int length);通過位元組陣列建立字串,以offset為第乙個字元,長度為length

string s = "hello";

string s1 = "heo";

s.equals(s1);//比較s與s1是否相同,返回boolean型別

s.equalsingorecase(s1);//判斷s與s1是否相同,忽略大小寫

s.contains(s1);//判斷s中是否包含s1,返回boolean型別

s.endwith(s1);//判斷s是否以s1結尾

s.startwith(s1);判斷s是否以s1開頭

s.isempty();//判斷s是否為空

string s = "hello";

string s1 = "heo";

s.charat(2);//獲取字串中下索引值為2的char值,返回型別為char

s.codepointat(2);//返回對應索引值的acsii值

s.codepointbefore(2);//返回對應索引值的前乙個字元的acsii值

s.concat(s1);//將s與s1拼接,返回乙個新的字串

s.length();//獲取字串的長度

s.indexof("e")//返回第一次出現"e"的索引值

s.lastindexof("l");//返回最後一次出現"l"的索引值

s.substring(int beginindex);//從索引值beginindex開始擷取字串到最後,包括當前索引值對應的字元

s.substring(int beginindex,int lastindex);//從索引值beginindex開始擷取字串直到lastindex,包含左邊不包含右邊

string s = "hello";

string s1 = "heo";

s.tochararray();//將字串轉換為字元陣列

s.getbytes();//將字串轉換為位元組陣列

s.split("-");//將字串分割,以特定的符號分割成字串陣列

s.tolowercase();//將字串s全部轉換成小寫字母

s.touppercase();//將字串轉換為大寫字母

s.valueof(引數);//返回引數對應的字串型別

public string trim()去除字串前後的空格

stringbuffer s = new stringbuffer();建立乙個空字串緩衝區,初始容量為16個字元

stringbuffer s = new stringbuffer(int capacity);//建立乙個不帶字元的字串緩衝區,緩衝區長度為capacity

stringbuffer s = new strinbuffer("hello");//建立乙個字串緩衝區,內容為hello

day21 學習筆記

乙個python檔案有兩種用途 1.被當做程式執行 2.被當做模組匯入 二者的區別 ps name main import匯入模組在使用時必須加上字首 模組.優點 肯定不會與當前空間中名字衝突 缺點 顯得麻煩 from模組名import函式名 函式名是在當前位置的全域性變數,但是指向的記憶體位址是模...

每日演算法 day 21

那些你早出晚歸付出的刻苦努力,你不想訓練,當你覺的太累了但還是要咬牙堅持的時候,那就是在追逐夢想,不要在意終點有什麼,要享受路途的過程,或許你不能成就夢想,但一定會有更偉大的事情隨之而來。mamba out 2020.3.4 記憶化搜尋 include include include include...

Day2 1 迴圈結構

課件位址 全部 課程目標 1.while 型迴圈 2.for.in 迴圈 3.range 函式4.break 和continue 語句及迴圈中的 else 子句計算機執行 流程 迴圈是讓計算機做重複任務的有效方法 while迴圈和break n 1 while n 100 if n 10 當n 11...