java 實用片段整理

2021-07-03 13:14:35 字數 639 閱讀 3671

1、反射tostring

優勢:①**簡潔 , 無須任何配置

② model 屬性變化 ,無需修改tostring

缺陷:安全性問題 , 反射私有屬性值也會暴露 .

public static string objecttostring(object condition)
2、初始化list

public static arraylistcreatearraylist(t ... elements) 

return list;

}

3、巧用異常

public void test3() catch (exception e) 

if(bol){}//相應處理

}private void test2() throws exception

private string test1() throws exception

return retstr;

}

實用js片段

演算法 加法 add 10,2 12 function add a,b catch f try catch f return e math.pow 10,math.max c,d mul a,e mul b,e e 減法 sub 10,2 8 function sub a,b catch f try...

java Thread 片段整理

一,執行緒的生命週期 1.wating state 一旦執行緒被構造,但是還沒有執行任何 那麼它就處於 waiting state,其他的執行緒可以與之互動,還可以設定不同的屬性,如priority,name,daemon status 等.一旦乙個執行緒 處於 waiting,它的state 可以...

演算法 實用程式片段

a b 是排除餘數僅保留商的運算 123 10 3 123 10 12 12 10 2 12 10 1 1 10 1 1 10 0 a 2 0 a 2 2 a常規的做法是對 2 取模,if x 2 0 使用位操縱 bit manipulation 的方法為,讓該數與 1 相與 if x 1 0 de...