千鋒逆戰班,陳強 在千鋒「逆戰」學習第 22天

2021-10-03 11:41:10 字數 944 閱讀 4503

string字串的常用方法

1.tostring:返回物件本身

2.substring(陣列的下標):返回乙個新的字串,它是此字串的乙個子字串。從括號定義的下標開始;

3.touppercase():將字串中的字母全部變成大寫;

4.tolawercase():將字串中的字母全部變成小寫;

5.trim():去掉字串前後的空格;

6.split():根據()內定義的字元進行切割;

7.endswith():判斷該字串是否已括號內的字串結尾;

8.indexof:找到指定字元所在的下標;

以下是對上面一些方法的練習:

package com.qianfeng.test.string;

public class stringlx2

public static void test()

else if((test[i]>='a'&&test[i]<='z') || (test[i]>='a'&& test[i]<='z')) else

}system.out.println("字母有"+countchar+"個,數字有"+countnumber+"個,其他有"+countother+"個");

} public static void test2()

else if(ch[i]>='a'&&ch[i]<='z')

} for(char c : ch)

system.out.println();

}public static void test3()

public static void test4()

public static void test5()

}public static void test6()

}

千鋒逆戰班,陳強 在千鋒「逆戰」學習第 23天

一 bigdecimal類 用於處理高精度計算 的常用方法 1.bigdecimal常用的幾個構造方法 1 bigdecimal int 將int表示形式轉換成bigdecimal物件 2 bigdecimal string 將字串表示形式轉換成bigdecimal物件 3 bigdecimal d...

千鋒逆戰班,第29天

在千鋒 逆戰 學習第29天 改變世界的第一件事就是改變自己,改變自己的最好時機就是現在 i.mythread1沒有繼承thread類所以其中沒有sleep方法應該改為 public void run catch interruptedexception e system.out.println he...

千鋒逆戰班第33天

1.tcp和udp都是傳輸層協議,tcp 有鏈結 有連線i無連線 的協議,udp 無連線 有連線 無連線 的協議。這兩種協議中,tcp 協議更安全,而且 udp 協議傳輸效率更高。2.有以下 abc socket s new socket 192.168.0.100 9000 以下說法正確的是 a....