版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
-PAGE21-《面向?qū)ο蟪绦蛟O(shè)計(jì)(Java)》教學(xué)大綱課程英文名Object-orientedProgramDevelopment(Java)課程代碼學(xué)分3.5總學(xué)時(shí)56理論學(xué)時(shí)36實(shí)驗(yàn)/實(shí)踐學(xué)時(shí)20課程類別學(xué)科基礎(chǔ)課課程性質(zhì)限選先修課程高級(jí)語言程序設(shè)計(jì)適用專業(yè)計(jì)算機(jī)科學(xué)與技術(shù)開課學(xué)院信息工程學(xué)院一、課程地位與課程目標(biāo)(一)課程地位Objectorientedprogrammingisanimportantbasiccourseforthemajorofcomputerscienceandtechnology.Itplaysanimportantroleinthetransitionprocessfromthebasictrainingtotheteachingstageoftheprofessionalcourse.Itnotonlylaysasolidtheoreticalfoundationandtechnicalfoundationforthefuturestudy,butalsoprovidesthenecessarytheories,methodsandtoolsforsoftwaredevelopmentandprogramdesign.(二)課程目標(biāo)Intheobject-orientedviewofsoftware,programsareconsideredtobecollectionsofobjectsthatinteractbysendingmessagestooneanotherandreactingtotheanswerstothosemessages.Theseideasareattheforefrontofmodernsoftwaredevelopment.Thiscourseteachesthefundamentalideasbehindtheobject-orientedapproachtoprogramming.Thiscourseaimstoconveyanunderstandingofobjectorientedprogramming.Aftertakingthecourse,thestudentwillbeabletodiscussobjectorientedtechniqueswithotherprogrammers,andwillbeabletodevelopandimplementsmallprogramsinJava.二、課程目標(biāo)達(dá)成的途徑與方法課程目標(biāo)課程目標(biāo)內(nèi)容目標(biāo)達(dá)成的途徑與方法教學(xué)內(nèi)容課程目標(biāo)1掌握J(rèn)ava語言開發(fā)環(huán)境、基礎(chǔ)知識(shí)、調(diào)試方法課堂講授實(shí)驗(yàn)課外作業(yè)Chapter1:AnIntroductiontoJavaChapter2:TheJavaProgrammingEnvironmentChapter3:FundamentalProgrammingStructuresinJavaChapter7:Exceptions,Assertions,andLoggingChapter14:Concurrency課程目標(biāo)2掌握面向?qū)ο笳Z言核心內(nèi)容課堂講授小班討論/課堂討論實(shí)驗(yàn)課外作業(yè)Chapter4:ObjectsandClassesChapter5:InheritanceChapter6:Interfaces,LambdaExpressions,andInnerClasses課程目標(biāo)3掌握泛型、集合的用法等1.課堂講授2.小班討論/課堂討論3.實(shí)驗(yàn)4.課外作業(yè)Chapter8:GenericProgrammingChapter9:Collections課程目標(biāo)4掌握?qǐng)D形界面編程,能實(shí)現(xiàn)完整的系統(tǒng)1.課堂講授2.實(shí)驗(yàn)3.課外作業(yè)Chapter10:GraphicsProgrammingChapter11:EventHandlingChapter12:UserInterfaceComponentswithSwingChapter13:DeployingApplications三、課程目標(biāo)與相關(guān)畢業(yè)要求的對(duì)應(yīng)關(guān)系課程目標(biāo)課程目標(biāo)對(duì)畢業(yè)要求的支撐程度(H、M、L)畢業(yè)要求2畢業(yè)要求3畢業(yè)要求4畢業(yè)要求5課程目標(biāo)1MMMM課程目標(biāo)2MHHH課程目標(biāo)3MHMM課程目標(biāo)4MHHH四、課程主要內(nèi)容與基本要求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)五、課程學(xué)時(shí)安排章節(jié)號(hào)教學(xué)內(nèi)容學(xué)時(shí)數(shù)學(xué)生任務(wù)對(duì)應(yīng)課程目標(biāo)1AnIntroductiontoJava1課程目標(biāo)12TheJavaProgrammingEnvironment1課程目標(biāo)13FundamentalProgrammingStructures3(2)基本語法作業(yè)、實(shí)驗(yàn)課程目標(biāo)14ObjectsandClasses6(4)類和構(gòu)造器作業(yè)、實(shí)驗(yàn)、小班/課堂討論課程目標(biāo)25Inheritance6(4)繼承和多態(tài)性作業(yè)、實(shí)驗(yàn)、小班/課堂討論課程目標(biāo)26InterfaceandInnerClasses4(2)接口作業(yè)、實(shí)驗(yàn)、小班/課堂討論課程目標(biāo)27Exceptions,Assertions,Logging,andDebugging4(2)實(shí)驗(yàn)課程目標(biāo)18GenericProgramming2課程目標(biāo)39Collections6(2)集合作業(yè)、討論、實(shí)驗(yàn)課程目標(biāo)310GraphicsProgramming6(2)作業(yè)、實(shí)驗(yàn)課程目標(biāo)411EventHandling4課程目標(biāo)412UserInterfaceComponentswithSwing3課程目標(biāo)413DeployingApplications2部署作業(yè)課程目標(biāo)414Concurrency4(2)作業(yè)、實(shí)驗(yàn)課程目標(biāo)4六、實(shí)踐環(huán)節(jié)及基本要求序號(hào)實(shí)驗(yàn)項(xiàng)目學(xué)時(shí)基本要求學(xué)生任務(wù)實(shí)驗(yàn)性質(zhì)實(shí)驗(yàn)類別1DataType2masterUseJavaDataTypeCheckedRequired2ObjectsandClasses4masterDefineclassandcreateobjectCheckedRequired3Inheritance4masterDefineclassandinheritclassCheckedRequired4Interface&InnerClasses2masterDefineinterfaceandimplementCheckedRequired5Excep
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(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ì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 農(nóng)村生活污水治理時(shí)間進(jìn)度安排方案
- 名著讀后感(集錦15篇)
- 初中高知識(shí)復(fù)習(xí)測(cè)試卷
- 2024安全管理技術(shù)競(jìng)賽(單選)練習(xí)卷含答案
- 專題11 變量與函數(shù)(七大類型)(題型專練)(解析版)
- 2023中小學(xué)學(xué)校防范電信網(wǎng)絡(luò)詐騙反電詐工作方案
- 專題七自媒體營(yíng)銷 (課件)職教高考電子商務(wù)專業(yè)《網(wǎng)絡(luò)營(yíng)銷實(shí)務(wù)》
- 公考歧義句辨析題分類解法語法結(jié)構(gòu)法
- 高一英語綜合語法測(cè)試
- 2024屆上海市寶山區(qū)上海大學(xué)市北附屬中學(xué)高三下學(xué)期“一診”模擬數(shù)學(xué)試題
- 經(jīng)顱磁刺激技術(shù)操作指南
- 人工智能在智能醫(yī)療中的應(yīng)用案例
- 《宮頸癌治療新進(jìn)展》課件
- 通訊產(chǎn)品行業(yè)培訓(xùn)資料
- 中心醫(yī)院違紀(jì)違規(guī)問題線索處置和移送制度
- 高等職業(yè)學(xué)校建設(shè)標(biāo)準(zhǔn)(2022年版)
- 2024年健康照護(hù)師理論試題
- 醫(yī)學(xué)院管理數(shù)據(jù)庫系統(tǒng)
- 助聽器行業(yè)分析報(bào)告調(diào)研
- 刻章業(yè)管理制度
- 弘揚(yáng)教育家精神主題教師演講稿10篇
評(píng)論
0/150
提交評(píng)論