王朝网络
分享
 
 
 

Java大学教程(第6版)(英文版)(含光盘)(国外计算机科学教材系列)(附CD光盘一张)(Java How to Program,sixth Edition)

王朝导购·作者佚名
 
Java大学教程(第6版)(英文版)(含光盘)(国外计算机科学教材系列)(附CD光盘一张)(Java How to Program,sixth Edition)  点此进入淘宝搜索页搜索
  特别声明:本站仅为商品信息简介,并不出售商品,您可点击文中链接进入淘宝网搜索页搜索该商品,有任何问题请与具体淘宝商家联系。
  参考价格: 点此进入淘宝搜索页搜索
  分类: 图书,教材教辅与参考书,大学,大学英语,教材与辅导,
  品牌: H.M.Deitel

基本信息·出版社:电子工业出版社

·页码:1109 页

·出版日期:2008年

·ISBN:7121070219/9787121070211

·条形码:9787121070211

·包装版本:6版

·装帧:平装

·开本:16

·正文语种:英语

·丛书名:国外计算机科学教材系列

·外文书名:Java How to Program,sixth Edition

·附带品描述:附CD光盘一张

产品信息有问题吗?请帮我们更新产品信息。

内容简介《Java大学教程》(第六版)(英文版)详细说明了在Java中面向对象编程的基本理论及实用知识,由初学者为起点,由点到面、由浅入深、循序渐进地介绍了应用程序、Applets程序、事件处理、对象、接口、内置类、继承、多态性、数据结构和集合、流文件、串行、图形界面及多线程等多种Java特性,第七版在前一版本的基础上增加了更多的实际案例,并介绍了有关使用UML编程方面的知识,有助于读者学习和借鉴。《Java大学教程》(第六版)(英文版)包括更广泛的教学特性,其中列举了数百条可实际使用的程序实例代码,并给出其实际的运行结果,可以使学生在学习时更为直观,书中给出了丰富的网上资源,可以便于读者进行更进一步的研究和探讨。《Java大学教程》(第六版)(英文版)的写作方法别具一格,易学易用,并且它的覆盖范围很广,可以满足不同专业和不同层次学生的需求。

编辑推荐《Java 大学教程》(第六版)(英文版)Java How to program.Sixth EditionThe complete ,authoritative Deltel Live-Coke introduction to object-oriented programming with the new Java 2 Platform Standard Edition 5.0JDBC ,Serulets and JSP!Java is the most popular objec

目录

Chapter1IntroductiontoComputers,theInternetandtheWorldWideWeb.1.1Introduction1.2WhatIsaComputer?1.3ComputerOrganization1.4EarlyOperatingSystems1.5Personal,DistributedandClient/ServerComputing1.6TheIntemetandtheWorldWideWeb1.7MachineLanguages,AssemblyLanguagesandHigh-LevelLanguages1.8HistoryofCandC++1.9HistoryofJava1.10JavaClassLibraries1.11FORTRAN,COBOL,PascalandAda1.12BASIC,VisualBasic,VisualC++,C#and.NET1.13TypicalJavaDevelopmentEnvironment1.14NotesaboutJavaandJavaHowtoProgram,SixthEdition1.15Test-DrivingaJavaApplication1.16SoftwareEngineeringCaseStudy:IntroductiontoObjectTechnologyandtheUML(Required)1.17Wrap-Up1.18WebResourcesChapter2IntroductiontoJavaApplications2.1Introduction2.2FirstPrograminJava:PrintingaLineofText2.3ModifyingOurFirstJavaProgram2.4DisplayingTextwithprintf2.5AnotherJavaApplication:AddingIntegers2.6MemoryConcepts2.7Arithmetic2.8DecisionMaking:EqualityandRelationalOperators2.9(Optional)SoftwareEngineeringCaseStudy:ExaminingtheRequirementsDocument2.10Wrap-UpChapter3IntroductiontoClassesandObjects3.1Introduction3.2Classes,Objects,MethodsandInstanceVariables3.3DeclaringaClasswithaMethodandInstanfiatinganObjectofaClass3.4DeclaringaMethodwithaParameter3.5InstanceVariables,setMethodsandgetMethods3.6PrimitiveTypesvs.ReferenceTypes3.7InitializingObjectswithConstructors3.8Floating-PointNumbersandTypedouble3.9(Optional)GUIandGraphicsCaseStudy:UsingDialogBoxes3.10(Optional)SoftwareEngineeringCaseStudy:IdentifyingtheClassesinaRequirementsDocument3.11Wrap-UpChapter4ControlStatements:Part14.1Introduction4.2Algorithms4.3Pseudocode4.4ControlStructures4.5ifSingle-SelectionStatement4.6if...elseDouble-SelectionStatement4.7whileRepetitionStatement4.8FormulatingAlgorithms:Counter-ControlledRepetition4.9FormulatingAlgorithms:Sentinel-ControlledRepetition4.10FormulatingAlgorithms:NestedControlStatements4.11CompoundAssignmentOperators4.12IncrementandDecrementOperators4.13PrimitiveTypes4.14(Optional)GUIandGraphicsCaseStudy:CreatingSimpleDrawings4.15(Optional)SoftwareEngineeringCaseStudy:IdentifyingClassAttributes4.16Wrap-UpChapter5ControlStatements:Part25.1Introduction5.2EssentialsofCounter-ControlledRepetition5.3forRepetitionStatement5.4ExamplesUsingtheforStatement5.5do...whileRepetitionStatement5.6switchMultiple-SelectionStatement5.7breakandcontinueStatements5.8LogicalOperators5.9StructuredProgrammingSummary5.10(Optional)GUIandGraphicsCaseStudy:DrawingRectanglesandOvals5.11(Optional)SoftwareEngineeringCaseStudy:IdentifyingObjects'StatesandActivities5.12Wrap-UpChapter6Methods:ADeeperLook6.1Introduction6.2ProgramModulesinJava6.3staticMethods,staticFieldsandClassMath6.4DeclaringMethodswithMultipleParameters6.5NotesonDeclaringandUsingMethods6.6MethodCallStackandActivationRecords6.7ArgumentPromotionandCasting6.8JavaAPIPackages6.9CaseStudy:Random-NumberGeneration6.9.1GeneralizedScalingandShiftingofRandomNumbers6.9.2Random-NumberRepeatabilityforTestingandDebugging6.10CaseStudy:AGameofChance(IntroducingEnumerations)6.11ScopeofDeclarations6.12MethodOverloading6.13(Optional)GUIandGraphicsCaseStudy:ColorsandFilledShapes6.14(Optional)SoftwareEngineeringCaseStudy:IdentifyingClassOperations6.15Wrap-UpChapter7Arrays7.1Introduction7.2Arrays7.3DeclaringandCreatingArrays7.4ExamplesUsingArrays7.5CaseStudy:CardShufflingandDealingSimulation7.6EnhancedforStatement7.7PassingArraystoMethods7.8CaseStudy:ClassGradeBookUsinganArraytoStoreGrades7.9MultidimensionalArrays7.10CaseStudy:ClassGradeBookUsingaTwo-DimensionalArray7.11Variable-LengthArgumentLists7.12UsingCommand-LineArguments7.13(Optional)GUIandGraphicsCaseStudy:DrawingArcs7.14(Optional)SoftwareEngineeringCaseStudy:CollaborationAmongObjects7.15Wrap-UpChapter8ClassesandObjects:ADeeperLook8.1Introduction8.2TimeClassCaseStudy8.3ControllingAccesstoMembers8.4ReferringtotheCurrentObject'sMemberswiththethisReference8.5TimeClassCaseStudy:OverloadedConstructors8.6DefaultandNo-ArgumentConstructors8.7NotesonSetandGetMethods8.8Composition8.9Enumerations8.10GarbageCollectionandMethodfinalize8.11staticClassMembers8.12staticImport8.13finalInstanceVariables8.14SoftwareReusability8.15DataAbstractionandEncapsulation8.16TimeClassCaseStudy:CreatingPackages8.17PackageAccess8.18(Optional)GUIandGraphicsCaseStudy:UsingObjectswithGraphics8.19(Optional)SoftwareEngineeringCaseStudy:StartingtoProgramtheClassesoftheATMSystem8.20Wrap-UpChapter9Object-OrientedProgramming:Inheritance9.1Introduction9.2SuperclassesandSubclasses9.3protectedMembers9.4RelationshipbetweenSuperclassesandSubclasses9.4.1CreatingandUsingaCommissionEmployeeClass9.4.2CreatingaBasePlusCommissionEmployeeClasswithoutUsingInheritance9.4.3CreatingaCommissionEmployee-BasePlusCommissionEmployeeInheritanceHierarchy9.4.4CommissionEmployee-BasePlusCommissionEmployeeInheritanceHierarchyUsingprotectedInstanceVariables9.4.5CommissionEmployee-BasePlusCommissionEmployeeInheritanceHierarchyUsingprivateInstanceVariables9.5ConstructorsinSubclasses9.6SoftwareEngineeringwithInheritance9.7ObjectClass9.8(Optional)GUIandGraphicsCaseStudy:DisplayingTextandImagesUsingLabels9.9Wrap-UpChapter10Object-OrientedProgramming:Polymorphism10.1Introduction10.2PolymorphismExamples10.3DemonstratingPolymorphicBehavior10.4AbstractClassesandMethods10.5CaseStudy:PayrollSystemUsingPolymorphism10.5.1CreatingAbstractSuperclassEmployee10.5.2CreatingConcreteSubclassSalariedEmployee10.5.3CreatingConcreteSubclassHourlyEmployee10.5.4CreatingConcreteSubclassCommissionEmployee10.5.5CreatingIndirectConcreteSubclassBasePlusCommissionEmployee10.5.6DemonstratingPolymorphicProcessing,OperatorinstanceofandDowncasting10.5.7SummaryoftheAllowedAssignmentsBetweenSuperclassandSubclassVariables10.6finalMethodsandClasses10.7CaseStudy:CreatingandUsingInterfaces10.7.1DevelopingaPayableHierarchy10.7.2DeclaringInterfacePayable10.7.3CreatingClassInvoice10.7.4ModifyingClassEmployeetoImplementInterfacePayable10.7.5ModifyingClassSalariedEmployeeforUseinthePayableHierarchy10.7.6UsingInterfacePayabletoProcessInvoicesandEmployeesPolymorphically.10.7.7DeclaringConstantswithInterfaces10.7.8CommonInterfacesoftheJavaAPI10.8(Optional)GUIandGraphicsCaseStudy:DrawingwithPolymorphism10.9(Optional)SoftwareEngineeringCaseStudy:IncorporatingInheritanceintotheATMSystem10.10Wrap-UpChapter11GUIComponents:Part111.1Introduction11.2SimpleGUI-BasedInput/OutputwithJOptionPane11.3OverviewofSwingComponents11.4DisplayingTextandImagesinaWindow11.5TextFieldsandanIntroductiontoEventHandlingwithNestedClasses11.6CommonGUIEventTypesandListenerInterfaces11.7HowEventHandlingWorks11.8JButton11.9ButtonsThatMaintainState11.9.1JCheckBox11.9.2JRadioButton11.10JComboBoxandUsinganAnonymousInnerClassforEventHandling11.11JList11.12Multiple-SelectionLists11.13MouseEventHandling11.14AdapterClasses11.15JPanelSubclassforDrawingwiththeMouse11.16Key-EventHandling11.17LayoutManagers11.17.1FlowLayout11.17.2BorderLayout11.17.3GridLayout11.18UsingPanelstoManageMoreComplexLayouts11.19JTextArea11.20Wrap-UpChapter12GraphicsandJava2DTM12.1Introduction12.2GraphicsContextsandGraphicsObjects12.3ColorControl12.4FontControl..12.5DrawingLines,RectanglesandOvals12.6DrawingArcs12.7DrawingPolygonsandPolylines12.8Java2DAPI12.9Wrap-UpChapter13ExceptionHandling13.1Introduction13.2Exception-HandlingOverview13.3Example:DivideByZeroWithoutExceptionHandling13.4Example:HandlingArithmeticExceptionsandInputMismatchExceptions13.5WhentoUseExceptionHandling13.6JavaExceptionHierarchy13.7finallyblock13.8StackUnwinding13.9printStackTrace,getStackTraceandgetMessage13.10ChainedExceptions13.11DeclaringNewExceptionTypes13.12PreconditionsandPostconditions13.13Assertions13.14Wrap-UpChapter14FilesandStreams14.1Introduction14.2DataHierarchy14.3FilesandStreams14.4ClassFile14.5Sequential-AccessTextFiles14.5.1CreatingaSequential-AccessTextFile14.5.2ReadingDatafromaSequential-AccessTextFile14.5.3CaseStudy:ACredit-InquiryProgram14.5.4UpdatingSequential-AccessFiles14.6ObjectSerialization14.6.1CreatingaSequential-AccessFileUsingObjectSerialization14.6.2ReadingandDeserializingDatafromaSequential-AccessFile14.7Random-AccessFiles14.7.1CreatingaRandom-AccessFile14.7.2WritingDataRandomlytoaRandom-AccessFile14.7.3ReadingDataSequentiallyfromaRandom-AccessFile14.7.4CaseStudy:ATransaction-ProcessingProgram14.8Additionaljava.ioClasses14.9OpeningFileswithJFileChooser14.10Wrap-UpChapter15Recursion15.1Introduction15.2RecursionConcepts15.3ExampleUsingRecursion:Factorials15.4ExampleUsingRecursion:FibonacciSeries15.5RecursionandtheMethodCallStack15.6RecursionvsIteration15.7StringPermutations15.8TowersofHanoi15.9Fractals15.10RecursiveBacktracking15.11Wrap-Up15.12InternetandWebResourcesChapter16SearchingandSorting16.1Introduction16.2SearchingAlgorithms16.2.1LinearSearch16.2.2BinarySearch16.3SortingAlgorithms16.3.1SelectionSort16.3.2InsertionSort16.3.3MergeSort16.4Invariants16.5Wrap-upChapter17DataStructures17.1Introduction17.2Type-WrapperClassesforPrimitiveTypes17.3AutoboxingandAuto-Unboxing17.4Self-ReferentialClasses17.5DynamicMemoryAllocation17.6LinkedLists17.7Stacks17.8Queues17.9Trees17.10Wrap-UpChapter18Generics18.1Introduction18.2MotivationforGenericMethods18.3GenericMethods:ImplementationandCompile-TimeTranslation18.4AdditionalCompile-TimeTranslationIssues:MethodsThatUseaTypeParameterastheReturnType18.5OverloadingGenericMethods18.6GenericClasses18.7RawTypes18.8WildcardsinMethodsThatAcceptTypeParameters18.9GenericsandInheritance:Notes18.10Wrap-Up18.11InternetandWebResourcesChapter19Collections19.1Introduction19.2CollectionsOverview19.3ClassArrays19.4InterfaceCollectionandClassCollections19.5Lists19.5.1ArrayListandIterator19.5.2LinkedList19.5.3Vector19.6CollectionsAlgorithms19.6.1Algorithmsort19.6.2Algorithmshuffle19.6.3Algorithmsreverse,fill,copy,maxandmin19.6.4AlgorithmbinarySearch19.6.5AlgorithmsaddAll,frequencyanddisjoint19.7StackClassofPackagejava.util19.8ClassPriorityQueueandInterfaceQueue19.9Sets19.10Maps19.11PropertiesClass19.12SynchronizedCollections19.13UnmodifiableCollections19.14AbstractImplementations19.15Wrap-UpChapter20IntroductiontoJavaApplets20.1Introduction20.2SampleAppletsProvidedwiththeJDK20.3SimpleJavaApplet:DrawingaString20.3.1ExecutinganAppletintheappletviewer20.3.2ExecutinganAppletinaWebBrowser20.4AppletLife-CycleMethods20.5InitializinganInstanceVariablewithMethodinit20.6SandboxSecurityModel20.7IntemetandWebResources20.8Wrap-UpChapter21Multimedia:AppletsandApplications21.1Introduction21.2Loading,DisplayingandScalingImages21.3AnimatingaSeriesofImages21.4ImageMaps21.5LoadingandPlayingAudioClips21.6PlayingVideoandOtherMediawithJavaMediaFramework21.7Wrap-Up21.8IntemetandWebResourcesChapter22GUIComponents:Part222.1Introduction22.2JSlider22.3Windows:AdditionalNotes22.4UsingMenuswithFrames22.5JPopupMenu22.6PluggableLook-and-Feel22.7JDesktepPaneandJInternalFrame22.8JTabbedPane22.9LayoutManagers:BoxLayoutandGridBagLayout22.10Wrap-UpChapter23Multithreading23.1Introduction23.2ThreadStates:LifeCycleofaThread23.3ThreadPrioritiesandThreadScheduling23.4CreatingandExecutingThreads23.5ThreadSynchronization23.6Producer/ConsumerRelationshipwithoutSynchronization23.7Producer/ConsumerRelationshipwithSynchronization23.8Producer/ConsumerRelationship:CircularBuffer23.9Producer/ConsumerRelationship:ArrayBlockingQueue23.10MultithreadingwithGUI23.11OtherClassesandInterfacesinjava.util.concurrent23.12MonitorsandMonitorLocks23.13Wrap-UpChapter24Networking24.1Introduction24.2ManipulatingURLs24.3ReadingaFileonaWebServer24.4EstablishingaSimpleServerUsingStreamSockets24.5EstablishingaSimpleClientUsingStreamSockets24.6Client/ServerInteractionwithStreamSocketConnections24.7ConnectionlessClient/ServerInteractionwithDatagrams24.8Client/ServerTic-Tac-ToeUsingaMultithreadedServer24.9SecurityandtheNetwork24.10CaseStudy:DeitelMessengerServerandClient24.10.1DeitelMessengerServerandSupportingClasses24.10.2DeitelMessengerClientandSupportingClasses24.11Wrap-UpChapter25AccessingDatabaseswithJDBC25.1Introduction25.2RelationalDatabases25.3RelationalDatabaseOverview:ThebooksDatabase25.4SQL25.4.1BasicSELECTQuery25.4.2WHEREClause25.4.3ORDERBYClause25.4.4MergingDatafromMultipleTables:INNERJOIN25.4.5INSERTStatement25.4.6UPDATEStatement25.4.7DELETEStatement25.5InstructionstoinstallMySQLandMySQLConnector/J25.6InstructionsonSettingMySQLUserAccount25.7CreatingDatabasebooksinMySQL25.8ManipulatingDatabaseswithJDBC25.8.1ConnectingtoandQueryingaDatabase25.8.2QueryingthebooksDatabase25.9StoredProcedures25.10RowSetInterface25.11Wrap-Up25.12IntemetandWebResourcesChapter26Servlets26.1Introduction26.2ServletOverviewandArchitecture26.2.1InterfaceServletandtheServletLifeCycle26.2.2HttpServletClass26.2.3HttpServletRequestInterface26.2.4HttpServletResponseInterface26.3SettingUptheApacheTomcatServer26.4HandlingHTTPgetRequests26.4.1DeployingaWebApplication26.5HandlingHTTPgetRequestsContainingData26.6HandlingHTTPpostRequests26.7RedirectingRequeststoOtherResources26.8MultitierApplications:UsingJDBCfromaServlet26.9WelcomeFiles26.10Wrap-Up26.11IntemetandWebResourcesChapter27JavaServerPages(JSP)27.1Introduction27.2JavaServerPagesOverview27.3FirstJSPExample27.4ImplicitObjects27.5Scripting27.5.1ScriptingComponents27.5.2ScriptingExample27.6StandardActions27.6.1(jsp:include)Action27.6.2(jsp:forward)Action27.6.3(jsp:useBean)Action27.7Directives27.7.1pageDirective27.7.2includeDirective27.8CaseStudy:GuestBook27.9Wrap-Up27.10IntemetandWebResourcesChapter28FormattedOutput28.1Introduction28.2Streams28.3FormattingOutputwithprintf28.4PrintingIntegers28.5PrintingFloating-PointNumbers28.6PrintingStringsandCharacters28.7PrintingDatesandTimes28.8OtherConversionCharacters28.9PrintingwithFieldWidthsandPrecisions28.10UsingFlagsintheprintfFormatString28.11PrintingwithArgumentIndices28.12PrintingLiteralsandEscapeSequences28.13FormattingOutputwithClassFormatter28.14Wrap-UpChapter29Strings,CharactersandRegularExpressions29.1Introduction29.2FundamentalsofCharactersandStrings29.3ClassString29.3.1StringConstructors29.3.2StringMethodslength,charAtandgetChars29.3.3ComparingStrings29.3.4LocatingCharactersandSubstringsinStrings29.3.5ExtractingSubstringsfromStrings29.3.6ConcatenatingStrings29.3.7MiscellaneousStringMethods29.3.8StringMethodvalueOf29.4ClassStringBuffer29.4.1StringBufferConstructors29.4.2StringBufferMethodslength,capacity,setLengthandensureCapacity29.4.3StringBufferMethodscharAt,setCharAt,getCharsandreverse29.4.4StringBufferappendMethods29.4.5StringBufferInsertionandDeletionMethods29.5ClassCharacter29.6ClassStringTokenizer29.7RegularExpressions,ClassPatternandClassMatcher29.8Wrap-UpAppendixAOperatorPrecedenceChartAppendixBASCIICharacterSetAppendixCKeywordsandReservedWordsAppendixDPrimitiveTypesAppendixE(OnCD)NumberSystemsAppendixF(OnCD)UnicodeAppendixGUsingtheJavaAPIDocumentationAppendixI-I(OnCD)CreatingDocumentationwith]&vadocAppendixI(OnCD)BitManipulationAppendixJ(OnCD)ATMCaseStudyCodeAppendixK(OnCD)LabeledbreakandcontinueStatementsAppendixL(OnCD)UML2:AdditionalDiagramTypesAppendixM(OnCD)DesignPatternsAppendixN(OnCD)Usingthe'DebuggerIndex

……[看更多目录]

文摘"Liveinfragmentsnolonger,onlyconnect.".——EdgarMorganFosterWelcometoJavaandJavaHowtoProgram,SixthEdition!AtDeitel&Associates,wewritecomputersciencetextbooksandprofessionalbooks.Thisbookwasajoytocreate.Tostart,weputthefiftheditionofJavaHowtoProgramunderthemicroscope:WeauditedthepresentationagainstthemostrecentACM/IEEEcurriculumrecommendationsandtheComputerScienceAdvancedPlacementExamination.AllofthechaptershavebeensignificantlyupdatedandupgradedWechangedtoanearlyclassesandobjectspedagogy.NowstudentsbuildtheirfirstreusableclassesstartinginChapter3AlloftheGUIandgraphicsintheearlychaptershasbeenreplacedbycarefullypacedoptionalsectionsinChapters3-10withtwospecialexercisesectionsinChapters11and12.InstructorshaveabroadchoiceoftheamountofGUIandgraphicstocover——fromnone,toa10-sectionintroductorysequence,toadeeptreatmentinChapters11,12and22Weupdatedourobject-orientedpresentationtousethelatestversibnoftheUML(UnifiedModelingLanguage)——UMLTM2.0——theindustry-standardgraphicallanguageformodelingobject-orientedsystems.1510WereplacedtheoptionalelevatorsimulatorcasestudyfromthepreviouseditionwithanewoptionalOOD/UMLautomatedtellermachine(ATM)casestudyinChapters1-8and10.Thenewcasestudyismuchsimplerandmoreattractiveforfirstandsecondprogrammingcourses.Severalmulti-sectionobject-orientedprogrammingcasestudieshavebeenadded.WeincorporatedkeynewfeaturesofSunMicrosystems'latestreleaseofJava——theJava2Platform,StandardEditionversion5.0(J2SE5.0).Thedesignofthebookhasbeencompletelyrevised.Thisnewdesignusescolor,fontsandvariousdesignelementstoenhanceastudent'slearningexperience

 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
>>返回首页<<
推荐阅读
 
 
频道精选
 
更多商品
完美应用Ubuntu(LAMP技术大系)
Web信息架构设计大型网站(Information Arcbitecture for the World Wide Web:Designing Large-Scale Web Sites)
CCNA考试精要(第3版)(640-802)(含光盘)(附CD光盘一张)(CCNA Exam Cram Third Edition The Smart Way to Study)
3ds max&Vray &Photoshop极致表现(商业空间篇)(含光盘)(聚光制造)(附DVD光盘一张)
应用光学(第3版)(电子信息与电气学科规划教材·光电信息科学与工程专业)
魔法数学故事屋:变大!变小!(比较)
广告心理-电通广告丛书(电通广告丛书)
走遍西班牙1教师用书
德语高级听力(含光盘)(德语听力系列)(附MP3光盘一张)(H ?rverst?ndnisübungen für fortaeschrittene deutschlerner)
现代大学英语精读3学习指南(《现代大学英语》系列辅导丛书)(CONTEMPORARY COLLEGE ENGLISH)
 
静静地坐在废墟上,四周的荒凉一望无际,忽然觉得,凄凉也很美
© 2005- 王朝网络 版权所有