《面向对象程序设计(Java)》课程教学大纲_第1页
《面向对象程序设计(Java)》课程教学大纲_第2页
《面向对象程序设计(Java)》课程教学大纲_第3页
《面向对象程序设计(Java)》课程教学大纲_第4页
《面向对象程序设计(Java)》课程教学大纲_第5页
已阅读5页,还剩2页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

-PAGE21-《面向对象程序设计(Java)》教学大纲课程英文名Object-orientedProgramDevelopment(Java)课程代码学分3.5总学时56理论学时36实验/实践学时20课程类别学科基础课课程性质限选先修课程高级语言程序设计适用专业计算机科学与技术开课学院信息工程学院一、课程地位与课程目标(一)课程地位Objectorientedprogrammingisanimportantbasiccourseforthemajorofcomputerscienceandtechnology.Itplaysanimportantroleinthetransitionprocessfromthebasictrainingtotheteachingstageoftheprofessionalcourse.Itnotonlylaysasolidtheoreticalfoundationandtechnicalfoundationforthefuturestudy,butalsoprovidesthenecessarytheories,methodsandtoolsforsoftwaredevelopmentandprogramdesign.(二)课程目标Intheobject-orientedviewofsoftware,programsareconsideredtobecollectionsofobjectsthatinteractbysendingmessagestooneanotherandreactingtotheanswerstothosemessages.Theseideasareattheforefrontofmodernsoftwaredevelopment.Thiscourseteachesthefundamentalideasbehindtheobject-orientedapproachtoprogramming.Thiscourseaimstoconveyanunderstandingofobjectorientedprogramming.Aftertakingthecourse,thestudentwillbeabletodiscussobjectorientedtechniqueswithotherprogrammers,andwillbeabletodevelopandimplementsmallprogramsinJava.二、课程目标达成的途径与方法课程目标课程目标内容目标达成的途径与方法教学内容课程目标1掌握Java语言开发环境、基础知识、调试方法课堂讲授实验课外作业Chapter1:AnIntroductiontoJavaChapter2:TheJavaProgrammingEnvironmentChapter3:FundamentalProgrammingStructuresinJavaChapter7:Exceptions,Assertions,andLoggingChapter14:Concurrency课程目标2掌握面向对象语言核心内容课堂讲授小班讨论/课堂讨论实验课外作业Chapter4:ObjectsandClassesChapter5:InheritanceChapter6:Interfaces,LambdaExpressions,andInnerClasses课程目标3掌握泛型、集合的用法等1.课堂讲授2.小班讨论/课堂讨论3.实验4.课外作业Chapter8:GenericProgrammingChapter9:Collections课程目标4掌握图形界面编程,能实现完整的系统1.课堂讲授2.实验3.课外作业Chapter10:GraphicsProgrammingChapter11:EventHandlingChapter12:UserInterfaceComponentswithSwingChapter13:DeployingApplications三、课程目标与相关毕业要求的对应关系课程目标课程目标对毕业要求的支撑程度(H、M、L)毕业要求2毕业要求3毕业要求4毕业要求5课程目标1MMMM课程目标2MHHH课程目标3MHMM课程目标4MHHH四、课程主要内容与基本要求Chapter1:AnIntroductiontoJava1.1JavaAsaProgrammingPlatform1.2TheJava“WhitePaper”Buzzwords1.3JavaAppletsandtheInternet1.4AShortHistoryofJava1.5CommonMisconceptionsaboutJavaChapter2:TheJavaProgrammingEnvironment2.1InstallingtheJavaDevelopmentKit2.2ChoosingaDevelopmentEnvironment2.3UsingtheCommand-LineTools2.3.1TroubleshootingHints2.4UsinganIntegratedDevelopmentEnvironment2.4.1LocatingCompilationErrors2.5RunningaGraphicalApplication2.6BuildingandRunningAppletsChapter3:FundamentalProgrammingStructuresinJava3.1ASimpleJavaProgram3.2Comments3.3DataTypes3.4Variables3.5Operators3.6Strings3.7InputandOutput3.8ControlFlow3.9BigNumbers3.10ArraysChapter4:ObjectsandClasses4.1IntroductiontoObject-OrientedProgramming4.2UsingPredefinedClasses4.3DefiningYourOwnClasses4.4StaticFieldsandMethods4.5MethodParameters4.6ObjectConstruction4.7Packages4.7.4PackageScope4.8TheClassPath4.9DocumentationComments4.10ClassDesignHintsChapter5:Inheritance5.1Classes,Superclasses,andSubclasses5.2Object:TheCosmicSuperclass5.3GenericArrayLists5.4ObjectWrappersandAutoboxing5.5MethodswithaVariableNumberofParameters5.6EnumerationClasses5.7Reflection5.8DesignHintsforInheritanceChapter6:InterfacesandInnerClasses6.1Interfaces6.2ObjectCloning6.3InterfacesandCallbacks6.4InnerClasses6.5ProxiesChapter7:Exceptions,Assertions,Logging,andDebugging7.1DealingwithErrors7.2CatchingExceptions7.3TipsforUsingExceptions7.4UsingAssertions7.5Logging7.6DebuggingTipsChapter8:GenericProgramming8.1WhyGenericProgramming?8.2DefiningaSimpleGenericClass8.3GenericMethods8.4BoundsforTypeVariables8.5GenericCodeandtheVirtualMachine8.6RestrictionsandLimitations8.7InheritanceRulesforGenericTypes8.8WildcardTypes8.9ReflectionandGenericsChapter9:Collections9.1CollectionInterfaces9.2ConcreteCollections9.3TheCollectionsFramework9.4Algorithms9.5LegacyCollectionsChapter10:GraphicsProgramming10.1IntroducingSwing10.2CreatingaFrame10.3PositioningaFrame10.4DisplayingInformationinaComponent10.5Workingwith2DShapes10.6UsingColor10.7UsingSpecialFontsforText10.8DisplayingImagesChapter11:EventHandling11.1BasicsofEventHandling11.2Actions11.3MouseEvents11.4TheAWTEventHierarchyChapter12:UserInterfaceComponentswithSwing12.1SwingandtheModel-View-ControllerDesignPattern12.2IntroductiontoLayoutManagement12.3TextInput12.4ChoiceComponents12.5Menus12.6SophisticatedLayoutManagement12.7DialogBoxes*Chapter13:DeployingApplications13.1JARFiles13.2JavaWebStart13.3Applets13.4StorageofApplicationPreferencesChapter14:Concurrency14.1WhatAreThreads?14.2InterruptingThreads14.3ThreadStates14.4ThreadProperties14.5Synchronization14.6BlockingQueues14.7Thread-SafeCollections14.8CallablesandFutures14.9Executors14.10Synchronizers14.11ThreadsandSwing (Itemswith*areoptional)五、课程学时安排章节号教学内容学时数学生任务对应课程目标1AnIntroductiontoJava1课程目标12TheJavaProgrammingEnvironment1课程目标13FundamentalProgrammingStructures3(2)基本语法作业、实验课程目标14ObjectsandClasses6(4)类和构造器作业、实验、小班/课堂讨论课程目标25Inheritance6(4)继承和多态性作业、实验、小班/课堂讨论课程目标26InterfaceandInnerClasses4(2)接口作业、实验、小班/课堂讨论课程目标27Exceptions,Assertions,Logging,andDebugging4(2)实验课程目标18GenericProgramming2课程目标39Collections6(2)集合作业、讨论、实验课程目标310GraphicsProgramming6(2)作业、实验课程目标411EventHandling4课程目标412UserInterfaceComponentswithSwing3课程目标413DeployingApplications2部署作业课程目标414Concurrency4(2)作业、实验课程目标4六、实践环节及基本要求序号实验项目学时基本要求学生任务实验性质实验类别1DataType2masterUseJavaDataTypeCheckedRequired2ObjectsandClasses4masterDefineclassandcreateobjectCheckedRequired3Inheritance4masterDefineclassandinheritclassCheckedRequired4Interface&InnerClasses2masterDefineinterfaceandimplementCheckedRequired5Excep

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论