已阅读5页,还剩8页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
英文原文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. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- GB/T 47921-2026钢制输氢管道氢脆敏感性测试和评估方法
- 吉林第二实验学校教育集团2025-2026学年八年级下学期7月期末道德与法治试题(文字版含答案)
- 3G技术赋能现代远程教育平台:应用、设计与实践创新
- 319水性涂料ZF708水性纳米锌环保复合材料生产线项目可行性研究报告模板-拿地立项申报
- 2BFML - 5型固定垄免耕播种机的创新设计与应用研究
- 2017非营利性组织和社会服务研讨会口译项目:实践、挑战与启示
- 油电光储一体化综合能源服务站项目可行性研究报告模板拿地申报
- 重要设施保护拆除施工方案
- 北京市保密知识教育培训试题(含答案)
- 高分子防水卷材施工工艺
- 2026年全国中级经济师之中级经济师经济基础知识考试综合能力题详细参考解析
- 2026江苏淮安淮阴区国家统计局淮阴调查队招聘编制外工作人员1人笔试参考题库及答案详解
- 2026年云南事业单位考试真题
- 电子书 -失效模式及影响分析 FMEA-AIAG-VDA-第一版
- 检验科实验室标本处理与运输指南
- 各类消防器材的使用方法
- IPO风险管理专员人力资源风险管理方案
- 2025年无人驾驶在景区导览中的应用可行性研究报告
- (正式版)DB61∕T 1624-2022 《公路护栏设置规范》
- 2025-2030中国硫铁矿行业供需态势与投资战略规划分析报告
- 河北省张家口市2024-2025学年高一物理下学期期末考试试题
评论
0/150
提交评论