Java 經典筆試題目整理 一

2021-09-21 13:06:01 字數 2257 閱讀 6706

public

static

void

main

(string[

] args)

public

static

intcalculate()

finally

return

++i;

}

i: 2

result: 3

public

static

void

main

(string[

] args)

public

static

intcalculate()

finally

}

i: 3

result: 2

public

static

void

main

(string[

] args)

public

static

void

change

(stringbuffer x, stringbuffer y)

public

static

void

change

(string x, string y)

stringbuffer: ababb

string: mnmn

public

class

bextends

aprivate

static

int *** =

***();

static

publicb(

)public

b(string address)

private string address()

private

static

int***()

public

static

void

main

(string[

] args)

}class

astatic

publica(

)private string name()

private

static

intcount()

}

a static property count

a static code block.

b static property ***

b static code block.

main start…

a property name

a none static code block.

a constructor init.

b property address

b none static code block.

b constructor init.

類的載入順序

靜態: 父類優先, 靜態變數和**塊按照順序載入

非靜態: 父類優先, 成員變數和**塊按照順序載入

建構函式: 父類優先

// controller 中加引數

@controller

public

class

aalcontroller

}// 自動注入

@controller

public

class

aalcontroller

}// 手動呼叫

@controller

public

class

aalcontroller

}// @modelattribute 方法

@controller

public

class

aalcontroller

("/answer"

)public

void

answer()

throws interruptedexception

}

筆試面試 經典筆試題整理

以下內容全部整理自網路。把整數關鍵碼k雜湊到n個槽列表,最好的雜湊函式是 h k k rand n mod n,rand n 返回0到n 1的整數 初始資料集的排列順序對演算法的效能無影響的是 堆排序 堆排序 最優時間複雜度o nlogn 最差時間複雜度o nlogn 平均時間複雜度o nlogn ...

經典C 語言筆試題目 1

q1 c和c 中struct有什麼區別?q2 c 中的struct和class有什麼區別?a 從語法上講,class和struct做型別定義時只有兩點區別 一 預設繼承許可權。如果不明確指定,來自class的繼承按照private繼承處理,來自struct的繼承按照public繼承處理 二 成員的預...

經典C 語言筆試題目 3

q1 heap與stack的差別 a heap是堆,stack是棧。stack的空間由作業系統自動分配 釋放,heap上的空間手動分配 釋放。stack空間有限,heap是很大的自由儲存區 c中的malloc函式分配的記憶體空間即在堆上,c 中對應的是new操作符。程式在編譯期對變數和函式分配記憶體...