java學習筆記 11

2021-08-30 08:34:43 字數 3036 閱讀 8717

1:scanner的使用(了解)

(1)在jdk5以後出現的用於鍵盤錄入資料的類。

(2)構造方法:

a:講解了system.in這個東西。

它其實是標準的輸入流,對應於鍵盤錄入

b:構造方法

inputstream is = system.in;

scanner(inputstream is)

c:常用的格式

scanner sc = new scanner(system.in);

(3)基本方法格式:

a:hasnext***() 判斷是否是某種型別的

b:next***() 返回某種型別的元素

(4)要掌握的兩個方法

a:public int nextint()

b:public string nextline()

(5)需要注意的小問題

a:同乙個scanner物件,先獲取數值,再獲取字串會出現乙個小問題。

b:解決方案:

a:重新定義乙個scanner物件

b:把所有的資料都用字串獲取,然後再進行相應的轉換

2:string類的概述和使用(掌握)

(1)多個字元組成的一串資料。

其實它可以和字元陣列進行相互轉換。

(2)構造方法:

a:public string()

b:public string(byte bytes)

c:public string(byte bytes,int offset,int length)

d:public string(char value)

e:public string(char value,int offset,int count)

f:public string(string original)

下面的這乙個雖然不是構造方法,但是結果也是乙個字串物件

g:string s = 「hello」;

(3)字串的特點

a:字串一旦被賦值,就不能改變。

注意:這裡指的是字串的內容不能改變,而不是引用不能改變。

b:字面值作為字串物件和通過構造方法建立物件的不同

string s = new string(「hello」);和string s = "hello"的區別?

(4)字串的面試題(看程式寫結果)

a:==和equals()

string s1 = new string(「hello」);

string s2 = new string(「hello」);

system.out.println(s1 == s2);// false

system.out.println(s1.equals(s2));// true

string s3 = new string(「hello」);

string s4 = 「hello」;

system.out.println(s3 == s4);// false

system.out.println(s3.equals(s4));// true

string s5 = 「hello」;

string s6 = 「hello」;

system.out.println(s5 == s6);// true

system.out.println(s5.equals(s6));// true

b:字串的拼接

string s1 = 「hello」;

string s2 = 「world」;

string s3 = 「helloworld」;

system.out.println(s3 == s1 + s2);// false

system.out.println(s3.equals((s1 + s2)));// true

system.out.println(s3 == 「hello」 + 「world」);// false 這個我們錯了,應該是true

system.out.println(s3.equals(「hello」 + 「world」));// true

(5)字串的功能(自己補齊方法中文意思)

a:判斷功能

boolean equals(object obj)

boolean equalsignorecase(string str)

boolean contains(string str)

boolean startswith(string str)

boolean endswith(string str)

boolean isempty()

b:獲取功能

int length()

char charat(int index)

int indexof(int ch)

int indexof(string str)

int indexof(int ch,int fromindex)

int indexof(string str,int fromindex)

string substring(int start)

string substring(int start,int end)

c:轉換功能

byte getbytes()

char tochararray()

static string valueof(char chs)

static string valueof(int i)

string tolowercase()

string touppercase()

string concat(string str)

d:其他功能

a:替換功能

string replace(char old,char new)

string replace(string old,string new)

b:去空格功能

string trim()

c:按字典比較功能

int compareto(string str)

int comparetoignorecase(string str)

java學習筆記 第11天

建立視窗之後無法關閉 ctrl alt delete 直接殺程序 xml extensible markuplanguage xml 描述事物本身 xsl 事物的表現形式 dtd schema 定義xml的語法 與html的區別 更有利於資料的描述,交換 html不具有擴充套件性,xml可以定義新的...

Java學習筆記 11 謹慎地覆蓋clone

1 clone方法的通用約定是非常弱的 x.clone x x.clone getclass x.getclass x.clone equals x 都不是絕對的要求 2 clone方法就是另乙個構造器,你必須保證它不會傷害到原始的物件,並確保正確地建立被轉殖物件中的約束條件。3 clone架構與應...

學習筆記1 1

1.virtual修飾符會被 繼承的。private 也被整合,只事派生類沒有訪問許可權而已。virtual可加可不加。子類的空間裡有父類的所有變數 static除外 同乙個函式只存在乙個實體 inline除外 子類覆蓋它的函式不加virtual 也能實現多型。在子類的空間裡,有父類的私有變數。私有...