???????????
???????????? ???????[ 2014/5/12 10:52:08 ] ??????????????? ??????? ???????
????????????????????????????????????????????????????£??????????????????????????????????????????????£?
?????κ??????????д???????????????????Ψ??д????????????????????????????
?????2????????????????
??????????bug?????????д??????????????????bug;
????????о?????д?????????????????????????е?????????
???????????????????????????????????????????????????????????????????????
???????????????????????????????
????д????????????????????С????漰???????????????????????????С????????д???????????????????????????????????????????????????????????????????????????????
??????????????????????????????????????????θ????
????Kent Beck:?????????????????????????????Щ????ó?????????
????????(Variable)
????????????????????????????????????????????????????????????????????????????????????????á??????????????????????????????????????????????????????????????????????????????????????????
doublegetPrice(){
int basePrice = _quantity* _itemPrice;
double discountFactor;
if (basePrice > 1000) discountFactor = 0.95;
else discountFactor = 0.98;
return basePrice * discountFactor;
}
|
??????????
double getPrice(){
return basePrice()* discountFactor();
}
private int basePrice(){
return _quantity* _itemPrice;
}
private double discountFactor(){
if (basePrice()> 1000) return0.95;
else return 0.98;
}
|
??????????????????????????????????????????????????????????????
if ((platform.toUpperCase().indexOf("MAC")> -1)&&
(browser.toUpperCase().indexOf("IE")> -1)&&
wasInitialized()&& resize> 0 )
{
// do something
}
|
??????????
final booleanisMacOs = platform.toUpperCase().indexOf("MAC")>-1;
final boolean isIEBrowser =browser.toUpperCase().indexOf("IE") > -1;
final booleanwasResized = resize >0;
if (isMacOs&& isIEBrowser&& wasInitialized()&& wasResized){
// do something
}
|
??????
???·???
??????????????????
2023/3/23 14:23:39???д?ò??????????
2023/3/22 16:17:39????????????????????Щ??
2022/6/14 16:14:27??????????????????????????
2021/10/18 15:37:44???????????????
2021/9/17 15:19:29???·???????·
2021/9/14 15:42:25?????????????
2021/5/28 17:25:47??????APP??????????
2021/5/8 17:01:11