資料型別基本功能介紹

2021-06-19 20:44:32 字數 2770 閱讀 8719

/*

string s = new string();

string s1 = "";

這兩個是一回事。

string類適用於描述字串事物。

那麼它就提供了多個方法對字串進行操作。

常見的操作有哪些?

"abcd"

1,獲取。

1.1 字串中的包含的字元數,也就是字串的長度。

int length():獲取長度。

1.2 根據位置獲取位置上的某個字元。

char charat(int intdex):

1.3 根據字元獲取該字元在字串中位置。

int indexof(int ch):返回的是ch在字串中第一次出現的位置。

int indexof(int ch, int fromindex):從fromindex指定位置開始,獲取ch在字串中出現的位置。

過載:int indexof(string str):返回的是str在字串中第一次出現的位置。

nt indexof(string str,int fromindex):從fromindex指定位置開始,獲取str在字串中出現的位置。

int lastindexof(int ch)

2.判斷。

2.1 字串中是否包含某乙個子串。

boolean contains(str);

特殊之處: indexof(str):可以索引str第一次出現位置,如果返回-1,表示該str不在字串中存在。

所以也可以用於對指定字串的判斷,是否包含。

if(str.indexof("a")!=-1)

而且該方法既可以判斷,又可以獲取出現的位置。

2.2 字串中是否有內容。

boolean isempty();原理就是判斷長度是否為零。"",null是不一樣的,乙個為指向物件,乙個為指向空。

2.3 字串是否是以指定內容開頭。

boolean startswith(str);

2.4 字串是否是以指定內容結尾。

boolean endswith(str);

2.5 判斷字串內容是否相同。複寫了object類中的equals方法。

boolean equals(str);

2.6 判斷內容是否相同,並忽略大小寫。

boolean equalsignorecase(str)

3,轉換。

3.1 將字元陣列轉成字串。

建構函式:string(char)

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

靜態方法:

static string copyvalueof(char);

static string copyvalueof(char data,int offset,int count);

static string valueof(char);

3.2 將字串轉成字元陣列。*****

char tochararray():

3.3 將位元組陣列轉成字串。

string(byte)

string(byte,offset,count):將位元組2013/7/12陣列中的一部分轉成字串。

3.4 將字串轉成位元組陣列。

byte getbytes();

3.5 將基本資料型別轉成字串。

static string valueof(int)

static string valueof(double)

3+"";

特殊:字串和位元組陣列在轉換過程中,是可以指定編碼表的。

4,替換

string replace(oldchar,newchar);

5,切割

string split(regex);

6,子串。獲取字串中的一部分

string substring(int beginindex)

string substring(int beginindex,int endindex)

7,轉換,去除空格,比較。

7.1 將字串轉成大寫或小寫。

string touppercase();

string tolowercase();

7.2 將字串兩端的多個空格去除

string trim();

7.3 將兩個字串進行自然順序的比較。

int compareto(string);

*/class  stringmethoddemo

public static void method_sub()

public static void method_spilt()

}public static void method_replace()

public static void method_trans()

;string s = new string(arr,1,3);

sop("s="+s);//列印用的函式。

string s1 = "zxcvbnm";

char chs = s1.tochararray();

for(int x=0;x

}public static void method_is()

public static void method_get()

public static void main(string args) 

public static void sop(object obj)版本的新特性,裝箱。型別提公升。

}

Trac 基本功能介紹

trac 搭配 svn 來使用,覺得需要的功能都有了 含括 檔案,時間軸追蹤,產品路線圖,瀏覽原始碼,新增 檢視待辦事項,搜尋 等 來簡單介紹一下 trac吧 trac 官方 the trac project trac 說明 the trac user and administration guid...

torch基本功能介紹

torch 張量的相關運算,eg 建立 索引 切片 連續 轉置 加減乘除等相關運算。torch.nn 包含搭建網路層的模組 modules 和一系列的loss函式。eg.全連線 卷積 池化 bn分批處理 dropout crossentropyloss msloss等。torch.autograd ...

RaceWeb介紹 1 基本功能

raceweb軟體主要用於對資料進行快速操作及 web展示。資料庫目前可以使用 firebird sqlite sqlserver oracle 未來將設定為支援所有常見資料庫型別。web伺服器使用 apache 軟體的另乙個目標是快速,即以最少的操作達到資料操作的目的。raceweb目前在wind...