计算机专业外文翻译think in java.docx

上传人:b****2 文档编号:2270866 上传时间:2022-10-28 格式:DOCX 页数:23 大小:31.47KB
下载 相关 举报
计算机专业外文翻译think in java.docx_第1页
第1页 / 共23页
计算机专业外文翻译think in java.docx_第2页
第2页 / 共23页
计算机专业外文翻译think in java.docx_第3页
第3页 / 共23页
计算机专业外文翻译think in java.docx_第4页
第4页 / 共23页
计算机专业外文翻译think in java.docx_第5页
第5页 / 共23页
点击查看更多>>
下载资源
资源描述

计算机专业外文翻译think in java.docx

《计算机专业外文翻译think in java.docx》由会员分享,可在线阅读,更多相关《计算机专业外文翻译think in java.docx(23页珍藏版)》请在冰豆网上搜索。

计算机专业外文翻译think in java.docx

计算机专业外文翻译thinkinjava

来自:

thinkinjava(3)

外文原文

ThebusyJavadeveloper'sguidetoScala:

Classaction

ItmakessenseforJava™developerstouseobjectsasafirstpointofreferenceforunderstandingScala.InthissecondinstallmentofThebusyJavadeveloper'sguidetoScalaseries,TedNewardfollowsabasicpremiseoflanguagemeasurement:

thatthepowerofalanguagecanbemeasuredindirectrelationtoitsabilitytointegratenewfacilities--inthiscase,supportforcomplexnumbers.Alongthewayyou'llseesomeinterestingtidbitsrelatedtoclassdefinitionsandusageinScala.Inlastmonth'sarticle,yousawjustatouchofScala'ssyntax,thebareminimumnecessarytorunaScalaprogramandobservesomeofitssimplerfeatures.TheHelloWorldandTimerexamplesfromthatarticleletyouseeScala'sApplicationclass,itssyntaxformethoddefinitionsandanonymousfunctions,justaglimpseofanArray[],andabitontype-inferencing.Scalahasagreatdealmoretooffer,sothisarticleinvestigatestheintricaciesofScalacoding.

Scala'sfunctionalprogrammingfeaturesarecompelling,butthey'renottheonlyreasonJavadevelopersshouldbeinterestedinthelanguage.Infact,Scalablendsfunctionalconceptsandobjectorientation.InordertolettheJava-cum-Scalaprogrammerfeelmoreathome,itmakessensetolookatScala'sobjectfeaturesandseehowtheymapovertoJavalinguistically.Bearinmindthatthereisn'tadirectmappingforsomeofthesefeatures,orinsomecases,the"mapping"ismoreofananalogthanadirectparallel.Butwherethedistinctionisimportant,I'llpointitout.

Scalahasclass(es),too

RatherthanembarkonalengthyandabstractdiscussionoftheclassfeaturesthatScalasupports,let'slookatadefinitionforaclassthatmightbeusedtobringrationalnumbersupporttotheScalaplatform(largelyswipedfrom"ScalaByExample"--seeResources):

Listing1.rational.scala

classRational(n:

Int,d:

Int)

{

privatedefgcd(x:

Int,y:

Int):

Int=

{

if(x==0)y

elseif(x<0)gcd(-x,y)

elseif(y<0)-gcd(x,-y)

elsegcd(y%x,x)

}

privatevalg=gcd(n,d)

valnumer:

Int=n/g

valdenom:

Int=d/g

def+(that:

Rational)=

newRational(numer*that.denom+that.numer*denom,denom*that.denom)

def-(that:

Rational)=

newRational(numer*that.denom-that.numer*denom,denom*that.denom)

def*(that:

Rational)=

newRational(numer*that.numer,denom*that.denom)

def/(that:

Rational)=

newRational(numer*that.denom,denom*that.numer)

overridedeftoString()=

"Rational:

["+numer+"/"+denom+"]"

}

WhiletheoverallstructureofListing1islexicallysimilartowhatyou'veseeninJavacodeoverthelastdecade,somenewelementsclearlyareatworkhere.Beforepickingthisdefinitionapart,takealookatthecodetoexercisethenewRationalclass:

Listing2.RunRational

classRational(n:

Int,d:

Int)

{

//...asbefore

}

objectRunRationalextendsApplication

{

valr1=newRational(1,3)

valr2=newRational(2,5)

valr3=r1-r2

valr4=r1+r2

Console.println("r1="+r1)

Console.println("r2="+r2)

Console.println("r3=r1-r2="+r3)

Console.println("r4=r1+r2="+r4)

}

WhatyouseeinListing2isn'tterriblyexciting:

Icreateacoupleofrationalnumbers,createtwomoreRationalsastheadditionandsubtractionofthefirsttwo,andechoeverythingtotheconsole.(NotethatConsole.println()comesfromtheScalacorelibrary,livinginscala.*,andisimplicitlyimportedintoeveryScalaprogram,justasjava.langisinJavaprogramming.)

HowmanywaysshallIconstructthee?

NowlookagainatthefirstlineintheRationalclassdefinition:

Listing3.Scala'sdefaultconstructor

classRational(n:

Int,d:

Int)

{

//...

Althoughyoumightthinkyou'relookingatsomekindofgenerics-likesyntaxinListing3,it'sactuallythedefaultandpreferredconstructorfortheRationalclass:

nanddaresimplytheparameterstothatconstructor.

Scala'spreferenceforasingleconstructormakesacertainkindofsense--mostclassesenduphavingasingleconstructororacollectionofconstructorsthatall"chain"throughasingleconstructorasaconvenience.Ifyouwantedto,youcoulddefinemoreconstructorsonaRationallikeso:

Listing4.Achainofconstructors

classRational(n:

Int,d:

Int)

{

defthis(d:

Int)={this(0,d)}

NotethatScala'sconstructorchaindoestheusualJava-constructor-chainingthingbycallingintothepreferredconstructor(theInt,Intversion).

Details,(implementation)details...

Whenworkingwithrationalnumbers,ithelpstoperformabitofnumericallegerdemain:

namelythatoffindingacommondenominatortomakecertainoperationseasier.Ifyouwanttoadd1-over-2(alsoknownas"one-half")to2-over-4(alsoknownas"two-fourths"),theRationalclassshouldbesmartenoughtorea

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 人文社科 > 法律资料

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1