再现理想 发表于 2015-1-18 11:49:25

JAVA网页编程之Refactoring Notes-Refactoring Method...

Java的B/s开发是通常是javaweb开发,又叫J2EE开发,J2SE是手机开发。C#的C/s和B/s开发是说.net和Asp开发。。u在这里说明一点;资深一点的Java和C#程序员都明白一点
5.IntroduceExplainingVariableIfyouhaveacomplicatedexpression,puttheresultoftheexpression,orpartsoftheexpression,inatemporaryvariablewithanamethatexplainsthepurpose.IntroduceExplainingVariableisparticulalyvaluablewithconditionallogicinwhichitisusefultotakeeachclauseofaconditionandexplainwhattheconditionmeansawell-namedtemp.Anothercaseisalongalgorithm,inwhicheachstepinthecomputationcanbeexplainedwithatemp.Mechanics(1)Declareafinaltemporaryvariable,andsetittotheresultofpartofthecomplexexpression.(2)Replacetheresultpartoftheexpressionwiththevalueofthetemp.Before:doubleprice(){returnquantity*itemPrice-Math.max(0,quantity-500)*itemPrice*0.05+Math.min(quantity*itemPrice*0.1,100.0);}After:doubleprice(){finaldoublebasePrice=quantity*itemPrice;finaldoublequantityDiscount=Math.max(0,quantity-500)*itemPrice*0.05;finaldoubleshipping=Math.min(quantity*itemPrice*0.1,100.0);returnbasePrice-quantityDiscount+shipping;}

Appendix:usingExtractMethodtocompleterefactoring.ThebenefitofusingExtractMethodisthatthesesmethodologiesareavailabletoanyotherpartoftheobjectthatneedsthem.Althoughtheyareprivateatfirst,butyoucanrelaxthatifanotherobjectneedsthem.

doubleprice(){returnbasePrice()-quantityDiscount()+shipping();}privateDoublebasePrice(){returnquantityDiscount*itemPrice;}privateDoublequantityDiscount(){returnMath.min(quantity*itemPrice*0.1,100.0);}privateDoubleshipping(){returnMath.min(quantity*itemPrice*0.1,100.0);}

6.SplitTemporaryVariableIfatemporaryvariableassignedtomorethanonce,butisnotaloopvariablenoracollectingtemporaryvariable(Ifthelaterassignmentsareoftheformi=i+someexpression,thatindicatesthatitisacollcetingtemporaryvariable),youshoulduseSplitTemporaryMethod.Anyvariablewithmorethanoneresponsibilityshouldbereplacedwithatempforeachresponsibility.Michanics:(1)Changethenameofatempatitsdeclarationanditsfirstassignment.(2)Declarethenewtempasfinal.(3)Changeallreferencesofthetempuptoitssecondassignment.(4)Declarethetempatitssecondassignment.Before:doublegetDistanceTravelled(inttime){doubleresult;doubleacc=primaryForce/mass;intprimaryTime=Math.min(time,delay);result=0.5*acc*primaryTime*primaryTime;intsecondaryTime=time-delay;if(secondaryTime>0){doubleprimaryVel=acc*delay;acc=(primaryForce+secondaryForce)/mass;result+=primaryVel*secondaryTime+0.5*acc*secondaryTime*secondaryTime;}returnresult;}After:doublegetDistanceTravelled(inttime){doubleresult;finaldoubleprimaryAcc=primaryForce/mass;intprimaryTime=Math.min(time,delay);result=0.5*primaryAcc*primaryTime*primaryTime;intsecondaryTime=time-delay;if(secondaryTime>0){doubleprimaryVel=primaryAcc*delay;finaldoublesecondaryAcc=(primaryForce+secondaryForce)/mass;result+=primaryVel*secondaryTime+0.5*secondaryAcc*secondaryTime*secondaryTime;}returnresult;}

Appendix:CompleterefactoringdoublegetDistanceTravelled(inttime){doubleresult;result=0.5*getPrimaryAcc()*Math.pow(getPrimaryTime(time),2);if(getSecondaryTime(time)>0){doubleprimaryVel=getPrimaryAcc()*delay;finaldoublesecondaryAcc=(primaryForce+secondaryForce)/mass;result+=primaryVel*getSecondaryTime(time)+0.5*secondaryAcc*Math.pow(getSecondaryTime(time),2);}returnresult;}privateintgetPrimaryTime(inttime){returnMath.min(time,delay);}privatedoublegetPrimaryAcc(){returnprimaryForce/mass;}privateintgetSecondaryTime(inttime){returntime-delay;}

7.RemoveAssignmentstoParametersBefore:intdiscount(intinputVal,intquantity,intyearToDate){if(inputVal>50)inputVal-=2;if(quantity>100)inputVal-=1;if(yearToDate>10000)inputVal-=4;returninputVal;}

After:intdiscount(intinputVal,intquantity,intyearToDate){intresult=inputVal;if(inputVal>50)result-=2;if(quantity>100)result-=1;if(yearToDate>10000)result-=4;returnresult;}

8.ReplaceMethodwithMethodObjectIfthereisalongmethodthatuseslocalvariablesinsuchawaythatyoucannotapplyExtractMethod.Turnthemothodintoitsownobjectsothatallthelocalvariablesbecamefieldsonthatobject.Youcanthendecomposethemethodintoothermethodsonthesameobject.Michanics:(1)Createanewclass,nameitafterthemethod.(2)Givethenewclassafinalfieldfortheobjectthathostedtheoriginalmethodandafieldforeachtemporaryvariableandeachparameterintthemethod.(3)Givethenewclassaconstructorthattakesthesourceobjectandeachparameter.(4)Givethenewclassamethodnamed“compute”andcopythebodyoftheoriginalmethodintoit.

Before:classAccount{intgamma(intinputVal,intquantity,intyearToDate){intimportantVal1=(inputVal*quantity)+delta();intimportantVal2=(inputVal*yearToDate)+100;if((yearToDate-importantVal1>100))importantVal2-=20;intimportantVal3=importantVal2*7;returnimportantVal3-2*importantVal1;}}

After:classAccount{intgamma(intinputVal,intquantity,intyearToDate){returnnewGamma(this,inputVal,quantity,yearToDate);}}

classGamma{publicGamma(Accountaccount,intinputVal,intquantity,intyearToDate){account=account;inputVal=inputVal;quantity=quantity;yearToDate=yearToDate;}finalAccountaccount;intimportantVal1;intimportantVal2;intimportantVal3;intinputVal;intquantity;intyearToDate;

intcompute(){intimportantVal1=(inputVal*quantity)+account.delta();intimportantVal2=(inputVal*yearToDate)+100;if((yearToDate-importantVal1>100))importantVal2-=20;intimportantVal3=importantVal2*7;returnimportantVal3-2*importantVal1;}}

9.SubstitueAlgorithmReplaceanalgorithmwithonethatisclearer.

net程序员的大部门代码都靠控件拖拽完成的,虽然java也有,但是无论从美观和速度上都没发和.net比。java程序员都是代码完成的,所以java程序员常戏称.net程序员是操作员,呵呵。

冷月葬花魂 发表于 2015-1-21 15:37:27

我大二,Java也只学了一年,觉得还是看thinking in java好,有能力的话看英文原版(中文版翻的不怎么好),还能提高英文文档阅读能力。

第二个灵魂 发表于 2015-1-24 18:20:16

如果你学过HTML,那么事情要好办的多,如果没有,那你快去补一补HTML基础吧。其实JSP中的Java语法也不多,它更象一个脚本语言,有点象ASP。

金色的骷髅 发表于 2015-1-28 10:27:54

是一种突破用户端机器环境和CPU

若相依 发表于 2015-2-4 12:04:18

吧,现在很流行的Structs就是它的一种实现方式,不过Structs用起来实在是很繁,我们只要学习其精髓即可,我们完全可以设计自己的MVC结构。然后你再研究一下软件Refactoring (重构)和极限XP编程,相信你又会上一个台阶。 做完这些,你不如整理一下你的Java代码,把那些经典的程序和常见的应用整理出来,再精心打造一番,提高其重用性和可扩展性。你再找几个志同道合的朋友成立一个工作室吧

变相怪杰 发表于 2015-2-9 22:33:09

象、泛型编程的特性,广泛应用于企业级Web应用开发和移动应用开发。

精灵巫婆 发表于 2015-2-15 03:40:47

其实说这种话的人就如当年小日本号称“三个月拿下中国”一样大言不惭。不是Tomjava泼你冷水,你现在只是学到了Java的骨架,却还没有学到Java的精髓。接下来你得研究设计模式了。

老尸 发表于 2015-3-4 11:10:27

你就该学一学Servlet了。Servlet就是服务器端小程序,他负责生成发送给客户端的HTML文件。JSP在执行时,也是先转换成Servlet再运行的。虽说JSP理论上可以完全取代Servlet,这也是SUN推出JSP的本意,可是Servlet用来控制流程跳转还是挺方便的,也令程序更清晰。接下来你应该学习一下Javabean了,可能你早就看不管JSP在HTML中嵌Java代码的混乱方式了,这种方式跟ASP又有什么区别呢?

因胸联盟 发表于 2015-3-10 12:58:10

是一种语言,用以产生「小应用程序(Applet(s))

飘灵儿 发表于 2015-3-17 07:11:17

J2SE开发桌面应用软件比起 VC,VB,DEPHI这些传统开发语言来说,优势好象并不明显。J2ME对于初学者来说,好象又有点深奥,而且一般开发者很难有开发环境。

爱飞 发表于 2015-3-22 19:08:21

其实说这种话的人就如当年小日本号称“三个月拿下中国”一样大言不惭。不是Tomjava泼你冷水,你现在只是学到了Java的骨架,却还没有学到Java的精髓。接下来你得研究设计模式了。

小妖女 发表于 2015-3-26 13:59:57

是一种将安全性(Security)列为第一优先考虑的语言

再现理想 发表于 2015-3-27 02:12:29

其实说这种话的人就如当年小日本号称“三个月拿下中国”一样大言不惭。不是Tomjava泼你冷水,你现在只是学到了Java的骨架,却还没有学到Java的精髓。接下来你得研究设计模式了。

若天明 发表于 2015-3-27 19:08:47

是一种为 Internet发展的计算机语言

深爱那片海 发表于 2015-4-4 10:08:46

Java 编程语言的风格十分接近C、C++语言。

柔情似水 发表于 2015-4-6 14:48:48

是一种使网页(Web Page)产生生动活泼画面的语言

活着的死人 发表于 2015-4-16 09:26:12

我大二,Java也只学了一年,觉得还是看thinking in java好,有能力的话看英文原版(中文版翻的不怎么好),还能提高英文文档阅读能力。

admin 发表于 2015-4-25 09:46:05

Java是一个纯的面向对象的程序设计语言,它继承了 C++语言面向对象技术的核心。Java舍弃了C ++语言中容易引起错误的指针(以引用取代)、运算符重载(operator overloading)

乐观 发表于 2015-6-22 09:12:15

至于JDBC,就不用我多说了,你如果用java编过存取数据库的程序,就应该很熟悉。还有,如果你要用Java编发送电子邮件的程序,你就得看看Javamail 了。

不帅 发表于 2015-6-25 22:22:50

任职于太阳微系统的詹姆斯·高斯林等人于1990年代初开发Java语言的雏形,最初被命名为Oak,目标设置在家用电器等小型系统的程序语言
页: [1]
查看完整版本: JAVA网页编程之Refactoring Notes-Refactoring Method...