登录
首页 » Java » project2

project2

于 2015-05-30 发布 文件大小:10KB
0 181
下载积分: 1 下载次数: 13

代码说明:

  设计一个简单的课程管理系统(CourseManager)。主要功能包括: 课程信息的录入。主要包括:课程号(no)、课程名(name)、学分(grade)等; 课程信息的查询。根据课程号、课程名和学分等查询课程的信息。注意:查询结果可能不唯一。 课程信息的修改。根据课程号查询到指定课程的信息,再用新的内容替换。 课程信息的删除。根据课程号删除指定课程的信息。 设计时,采用层次化设计法,将类分为界面层(ui)、功能层(business)和持久层(persistence)3层,放在不同子包中。整个系统的代码放在exe4_2包中。(Design a simple course management system (CourseManager). Key features include: Entry course information. Including: course number (no), course name (name), credits (grade) and the like Queries course information. Information based curriculum, course name and credit and other inquiries courses. Note: query results may not be unique. Modify course information. Inquiry based curriculum to the specified courses, and then replaced with new content. Remove course information. Remove a specified course of information based curriculum. Design, the use of hierarchical design method, the class is divided into the interface layer (ui), the functional layer (business) and persistence (persistence) 3 layers in different sub-packages. The system code in the exe4_2 package.)

文件列表:

project2
........\classes
........\.......\exe4_2
........\.......\......\business
........\.......\......\........\CourseManager.class,2448,2015-05-24
........\.......\......\persistence
........\.......\......\...........\Course.class,1070,2015-05-24
........\.......\......\tester
........\.......\......\......\Tester.class,2709,2015-05-24
........\project2.jcd,7276,2015-05-24
........\project2.jcp,1415,2015-05-24
........\project2.jcu,1168,2015-05-24
........\project2.jcw,259,2015-05-24
........\src
........\...\exe4_2
........\...\......\business
........\...\......\........\CourseManager.java,2423,2015-05-24
........\...\......\persistence
........\...\......\...........\Course.java,716,2015-05-24
........\...\......\tester
........\...\......\......\Tester.java,2719,2015-05-24
........\...\Project2.java,324,2015-05-24
........\...\Project2Frame.java,1546,2015-05-24

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • SmartUpload
    SmartUpload SmartUpload Smart上传文件(SmartUpload SmartUpload Smart Upload file)
    2011-05-26 12:11:36下载
    积分:1
  • java
    java从入门到精通视频笔记,详细讲解java的相关知识(java entry to the master video notes, explain in detail the relevant knowledge of java)
    2014-12-12 16:23:22下载
    积分:1
  • Manual.Curso.de.java.desde.cero
    Libro de java, contiene un programa extenso que abarca la programacion de java.
    2011-05-12 23:32:44下载
    积分:1
  • SunKingJniUtil
    java Jni的一些应用 removeSystemMenu flashTitle setStayOnTop(java jni program,removeSystemMenu flashTitle setStayOnTop)
    2013-11-06 11:28:39下载
    积分:1
  • SSD1.All.Answers
    All correct answers to iCarnegie SSD1 course.
    2009-09-20 11:39:59下载
    积分:1
  • mover
    使用javamial获取邮箱的收件人全部信息,主要是收件人的信息。(Recipient s information use javamial get mailbox。)
    2013-01-17 15:06:13下载
    积分:1
  • QueryTask
    A task that gets suggestions from a corpus.
    2014-01-15 10:00:59下载
    积分:1
  • android demo
    Demo code to communicate with USR-TCP232
    2017-09-12 11:06:53下载
    积分:1
  • Eclipsejy
    书籍简介: Eclipse是一个很让人着迷的开发环境,它提供的核心框架和可扩展的插件机制给广大的程序员提供了无限的想像力和创造空间。Eclipse自身包含大量的内置功能,加上功能丰富的插件,将构成一个丰富多彩的工作环境而不仅仅是一个IDE。本书内容由浅入深,先介绍了Eclipse平台体系结构、工作台、Java集成开发环境、Java程序调试;再介绍了JUnit,Eclipse配置管理,Eclispe开发环境中的应用服务器Tomcat,Eclipse中的资源构建和构建工具Ant;最后介绍了Eclipse下的Web应用开发、插件开发技术、Struts应用开发和MySQL数据库应用开发。 本书适合于Java程序员、自由软件爱好者及各类软件开发人员阅读。(books Profile : Eclipse is a really very fascinating development environment, It provides a core framework and extensible plug-in mechanism for the majority of programmers with boundless imagination and creative space. Eclipse itself contains a lot of built-in functions, coupled with a feature-rich plug-ins, would constitute a colorful working environment is not just an IDE. The subjects in the book is aimed, first introduced the Eclipse Platform Architecture, workstations, Java integrated development environment, Java Debugger; I will introduce the JUnit. Eclipse configuration management, the development environment Eclispe the Tomcat application server, Eclipse Construction of resources and building tools Ant; Finally, under the Eclipse Web application development, the development of plu)
    2007-03-13 20:44:09下载
    积分:1
  • Exe4_3
    3.已知车辆(Vehicle)包括机动车(MotoVehicle)和非机动车(NonMotorVehicle)2种。小汽车(Car)、公交车(Bus)等属于机动车,自行车(Bicycle)等属于非机动车。随着能源技术的发展,出现了电动自行车(ElectricBicycle)、电动小汽车(ElectricCar)、天然气公交车(NaturalGasBus)等新型车辆。车辆的共同特征是都能够运行(run),并且有唯一的5位车牌号(LicenseNumber)。机动车的共同特征是采用燃油发动机(FuelEngine),且能够驾驶(drive)。自行车的共同特征是能够骑行(ride)。电动车辆的共同特征是由电池(Battery)驱动。天然气车辆的共同特征是采用天然气(NaturalGas)作为动力。 要求: (1)设计一个类体系描述上述车辆,写出它们的属性和方法。 (2)一家公司(Company)拥有10辆普通小汽车、5辆公交车、2辆电动小汽车和1辆天然气公交车,要求写一个方法listVehicles()显示所有车辆的信息(车牌号以及采用的动力)。 程序文件命名为Exe4_3.java。(3. Known vehicle (Vehicle) including motor vehicle (MotoVehicle) and non-motorized (NonMotorVehicle) 2 species. Cars (Car), bus (Bus), etc. to motor vehicles, bicycles (Bicycle), etc. are non-motor vehicles. With the development of energy technologies, the emergence of electric bicycles (ElectricBicycle), electric cars (ElectricCar), natural gas buses (NaturalGasBus) and other new vehicles. A common feature of the vehicle is able to run (run), and there are only five license plate number (LicenseNumber). Common feature is the use of a motor vehicle fuel engine (FuelEngine), and is capable of driving (drive). Common feature is the ability to ride a bike (ride). Common characteristics of the electric vehicle is driven by a battery (Battery). A common feature is the use of natural gas vehicles (NaturalGas) as the driving force. Claim: (1) describe the design of a class system of the vehicle, write their properties and methods. (2) a company (Company) owns 10 ordinary cars, five buses, )
    2015-06-14 18:22:51下载
    积分:1
  • 696518资源总数
  • 105885会员总数
  • 31今日下载