




已閱讀5頁(yè),還剩8頁(yè)未讀, 繼續(xù)免費(fèi)閱讀
版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
英文原文IntroducingC#C#-pronounced“SeeSharp”-isaprogramminglanguagedesignedforMicrosofts.NETplatform.Sinceitsfirstreleasein2002,C#hasfoundmanyroles.Itiswidelyusedontheserversideofwebsites,andalsoonboththeclientandserverinline-of-businessWindowsdesktopapplications.YoucanwritesmartphoneuserinterfacesandXbox360gamesinC#.Morerecently,MicrosoftsSilverlightplatformhasmadeC#anoptionforwritingRichInternetApplicationsthatruninawebbrowser.ButwhatkindoflanguageisC#?Tounderstandalanguagewellenoughtouseiteffectively,itsnotenoughtofocuspurelyonthedetailsandmechanisms,althoughwellbespendingplentyoftimeonthoseinthisbook.Itisequallyimportanttounderstandthethinkingbehindthedetails.Sointhischapter,welllookatwhatproblemsC#wasbuilttosolve.Thenwellexplorethestyleofthelanguage,throughaspectsthatdistinguishitfromotherlanguages.AndwellfinishthechapterwithalookatthelateststepintheevolutionofC#,itsfourthversion.WhyC#?Why.NET?Programminglanguagesexisttohelpdevelopersbemoreproductive.Manysuccessfullanguagessimplifyorautomatetedioustasksthatpreviouslyhadtobedonebyhand.Someoffernewtechniquesthatallowoldproblemstobetackledmoreeffectively,oronalargerscalethanbefore.HowmuchdifferenceC#canmaketoyouwilldependonyourprogrammingbackground,ofcourse,soitsworthconsideringwhatsortsofpeoplethelanguagedesignershadinmindwhentheycreatedC#.C#isaimedatdevelopersworkingontheWindowsplatform,anditssyntaxisinstantlyfamiliartousersofCorC+,orotherlanguagesthatdrawfromthesametradition,suchasJavaScriptandJava.Fundamentallanguageelementssuchasstatements,expressions,functiondeclarations,andflowcontrolaremodeledascloselyaspossibleontheirequivalentsinCfamilylanguages.Afamiliarsyntaxisnotenoughofareasontopickalanguage,ofcourse,soC#offersproductivity-enhancingfeaturesnotfoundinsomeofitspredecessors.Garbagecollectionfreesdevelopersfromthetyrannyofcommonmemorymanagementproblemssuchasmemoryleaksandcircularreferences.Verifiabletypesafetyofcompiledcoderulesoutawiderangeofbugsandpotentialsecurityflaws.WhileCorC+Windowsdevelopersmaynotbeaccustomedtothosefeatures,theywillseemoldhattoJavaveterans,butJavahasnothingtocompetewiththe“LINQ”featuresC#offersforworkingwithcollectionsofinformation,whetherinobjectmodels,XMLdocuments,ordatabases.Integratingcodefromexternalcomponentsisremarkablypainless,eventhosewritteninotherlanguages.C#alsoincorporatessupportforfunctionalprogramming,apowerfulfeaturepreviouslymostcommonlyseeninacademiclanguages.ManyofthemostusefulfeaturesavailabletoC#developerscomefromthe.NETFramework,whichprovidestheruntimeenvironmentandlibrariesforC#,andallother.NETlanguages,suchasVB.NET.C#wasdesignedfor.NET,andoneofthemainbenefitsofitscloserelationshipwiththe.NETFrameworkisthatworkingwithframeworkfeaturessuchastheclasslibraryfeelsverynatural.The.NETFrameworkClassLibraryWorkinginC#meansmorethanusingjustthelanguage-theclassesofferedbythe.NETFrameworkareanextremelyimportantpartoftheC#developerseverydayexperience(andtheyaccountforalotofthisbookscontent).Mostofthelibraryfunctionalityfallsintooneofthreecategories:utilityfeatureswrittenin.NET,wrappersaroundWindowsfunctionality,andframeworks.Thefirstgroupcomprisesutilitytypessuchasdictionaries,lists,andothercollectionclasses,aswellasstringmanipulationfacilitiessuchasaregularexpressionengine.Therearealsofeaturesthatoperateonaslightlylargerscale,suchastheobjectmodelsforrepresentingXMLdocuments.SomelibraryfeaturesarewrappersaroundunderlyingOSfunctionality.Forexample,thereareclassesforaccessingthefilesystem,andforusingnetworkfeaturessuchassockets.Andthereareclassesforwritingoutputtotheconsole,whichwecanillustratewiththeobligatoryfirstexampleofanyprogramminglanguagebook,showninExample1-1.Example1-1.Theinevitable“Hello,world”exampleclassProgramstaticvoidMain()System.Console.WriteLine(Hello,world);Wellexamineallthepiecesshownhereinduecourse,butfornow,notethateventhissimplestofexamplesdependsonaclassfromthelibrary-theSystem.Consoleclassinthiscase-todoitsjob.Finally,theclasslibraryofferswholeframeworkstosupportbuildingcertainkindsofapplications.Forexample,WindowsPresentationFoundation(WPF)isaframeworkforbuildingWindowsdesktopsoftware;ASP.NET(whichisnotanacronym,despiteappearances)isaframeworkforbuildingwebapplications.Notallframeworksareaboutuserinterfaces-WindowsCommunicationFoundation(WCF)isdesignedforbuildingservicesaccessedoverthenetworkbyothercomputersystems,forinstance.Thesethreecategoriesarenotstrict,asquiteafewclassesfitintotwo.Forexample,thepartsoftheclasslibrarythatprovideaccesstothefilesystemarenotjustthinwrappersaroundexistingWin32APIs.Theyaddnewobject-orientedabstractions,providingsignificantfunctionalitybeyondthebasicfileI/Oservices,sothesetypesfitintoboththefirstandsecondcategories.Likewise,frameworksusuallyneedtointegratewithunderlyingservicestosomeextentforexample,althoughtheWindowsFormsUIframeworkhasadistinctiveAPIofitsown,alotoftheunderlyingfunctionalityisprovidedbyWin32components.Sothethreecategoriesherearenotstrict.Theyjustofferausefulideaofwhatsortsofthingsyoucanfindintheclasslibraries.LanguageStyleC#isnottheonlylanguagethatrunsonthe.NETFramework.Indeed,supportformultiplelanguageshasalwaysbeenakeyfeatureof.NET,reflectedinthenameofitsruntimeengine,theCLRorCommonLanguageRuntime.Asthisnameimplies,.NETisnotjustforonelanguagenumerouslanguageshaveaccesstotheservicesofthe.NETFrameworkclasslibrary.WhymightyouchooseC#overtheothers?Wealreadymentionedoneimportantreason:C#wasdesignedspecificallyfor.NET.Ifyouareworkingwith.NETtechnologiessuchasWPForASP.NET,youllbespeakingtheirlanguageifyouworkinC#.ComparethiswithC+,whichsupports.NETthroughextensionstotheoriginallanguage.Theextensionsarecarefullythoughtoutandworkwell,butcodethatuses.NETlibrariesjustlooksdifferentfromnormalC+,soprogramsthatbridgetheworldsof.NETandstandardC+neverfeelcompletelycoherent.Andthedualpersonalityoftenpresentsdilemmas-shouldyouusestandardC+collectionclassesortheonesinthe.NETclasslibrary,forexample?Innative.NETlanguagessuchasC#,suchquestionsdonotemerge.F#istheoddoneouthere.Itsafunctionalprogramminglanguage,heavilyinfluencedbyalanguagecalledML.Backin1991,whenyourauthorswerefirst-yearstudents,ouruniversityscomputersciencecoursechoseMLforthefirstprogramminglanguagelecturesinpartbecauseitwassoacademicthatnoneofthestudentswouldpreviouslyhavecomeacrossanythinglikeit.F#isstillattheacademicendofthespectrumdespitehavingclimbedfarenoughdowntheivorytowertobeastandardpartofamainstreamdevelopmentenvironment.Itexcelsatcomplicatedcalculationsandalgorithms,andhassomecharacteristicsthatcanhelpwithparallelexecution.However,aswithmanyfunctionallanguages,thecostofmakingsomehardproblemseasieristhatalotofthingsthatareeasyinmoretraditionallanguagesareremarkablyhardinF#-functionallanguagesareadeptatcomplexproblems,butcanbeclumsywithsimpleones.ItseemslikelythatF#willmostlybeusedinscientificorfinancialapplicationswherethecomplexityofthecomputationtobeperformeddwarfsthecomplexityofthecodethatneedstoactontheresultsofthosecalculations.ManagedCodeThe.NETFrameworkprovidesmorethanjustaclasslibrary.Italsoprovidesservicesinsubtlerwaysthatarenotaccessedexplicitlythroughlibrarycalls.Forexample,earlierwementionedthatC#canautomatesomeaspectsofmemorymanagement,anotorioussourceofbugsinC+code.Abandoningheap-allocatedobjectsonceyouredonewiththemisacodingerrorinC+,butitsthenormalwaytofreethemin.NET.ThisserviceisprovidedbytheCLR-the.NETFrameworksruntimeenvironment.AlthoughtheC#compilerworkscloselywiththeruntimetomakethispossible,providingthenecessaryinformationabouthowyourcodeusesobjectsanddata,itsultimatelytheruntimethatdoestheworkofgarbagecollection.Dependingonwhatsortsoflanguagesyoumayhaveworkedwithbefore,theideathatthelanguagedependsheavilyontheruntimemightseemeithercompletelynaturalorsomewhatdisconcerting.ItscertainlydifferentfromhowCandC+work-withthoselanguages,thecompilersoutputcanbeexecuteddirectlybythecomputer,andalthoughthoselanguageshavesomeruntimeservices,itspossibletowritecodethatcanrunwithoutthem.ButC#codecannotevenexecutewithoutthehelpoftheruntime.Codethatdependsentirelyontheruntimeiscalledmanagedcode.Managedcompilersdonotproducerawexecutablecode.Instead,theyproduceanintermediateformofcodecalledIL,theIntermediateLanguage.Theruntimedecidesexactlyhowtoconvertitintosomethingexecutable.OnepracticalupshotofmanagedcodeisthatacompiledC#programcanrunonboth32-bitand64-bitsystemswithoutmodification,andcanevenrunondifferentprocessorarchitectures-itsoftenpossibleforcodethatrunsonanARM-basedhandhelddevicetorununmodifiedonIntel-basedPCs,oronthePowerPCarchitecturefoundintheXbox360gameconsole.IfyoureaJavadeveloper,allofthiswillsoundratherfamiliarjustsubstitutebytecodeforILandthestoryisverysimilar.Indeed,apopularbutsomewhatignorant“joke”amongthelessthoughtfulmembersoftheJavacommunityistodescribeC#asapoorimitationofJava.WhenthefirstversionofC#appeared,thedifferencesweresubtle,butthefactthatJavawentontocopyseveralfeatur
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 初中語(yǔ)法入門(mén):go與going的區(qū)別及其用法
- 我的校園時(shí)光作文(9篇)
- 外語(yǔ)課堂交互模式的歷史發(fā)展與演變
- 網(wǎng)絡(luò)服務(wù)協(xié)議的具體內(nèi)容與條款規(guī)定
- 小學(xué)生如何提升學(xué)科思維能力
- 《時(shí)態(tài)的結(jié)構(gòu)與運(yùn)用:九年級(jí)英語(yǔ)語(yǔ)法》
- 秋日鄉(xiāng)村景色:寫(xiě)景作文(14篇)
- 海底兩萬(wàn)里中的幻想與現(xiàn)實(shí)交融:八年級(jí)語(yǔ)文小說(shuō)賞析教案
- 能源工程新能源技術(shù)發(fā)展趨勢(shì)測(cè)試卷
- 生物制藥工藝與設(shè)備知識(shí)梳理
- 國(guó)開(kāi)學(xué)習(xí)網(wǎng)《小學(xué)語(yǔ)文教學(xué)研究》形考任務(wù)1-5答案
- 過(guò)敏調(diào)查表范本
- 春香傳(主演:王志萍-陳娜君)
- 儀器校準(zhǔn)管理課件
- 2023年06月中國(guó)社會(huì)科學(xué)院金融研究所第一批專業(yè)技術(shù)人員公開(kāi)招聘筆試歷年難、易錯(cuò)考點(diǎn)試題含答案解析
- 2023年杭州市濱江區(qū)數(shù)學(xué)六下期末質(zhì)量跟蹤監(jiān)視試題含解析
- 特種設(shè)備日管控、周排查、月調(diào)度模板
- 普通外科學(xué)科建設(shè)課件
- 《愛(ài)的教育》課外閱讀指導(dǎo)課正式版
- 圖解C編程知到章節(jié)答案智慧樹(shù)2023年寧波大學(xué)
- 2020年現(xiàn)行房屋建筑工程常用材料進(jìn)場(chǎng)取樣復(fù)試檢驗(yàn)項(xiàng)目規(guī)范
評(píng)論
0/150
提交評(píng)論