Java程序辅导

C C++ Java Python Processing编程在线培训 程序编写 软件开发 视频讲解

客服在线QQ:2653320439 微信:ittutor Email:itutor@qq.com
wx: cjtutor
QQ: 2653320439
Sample Programming Assignment - Chapter 7 Sample Programming Assignment Chapter 7 Traffic Light Simulation The Assignment: You will implement and test a small program that simulates two synchronized traffic lights. Some of the work has already been done--your primary job is to implement a method called simlights which does the simulation. Purposes: Give you practice in using the Queue class. Give you practice in reading documentation and using classes that are written by someone else. Before Starting: Read all of Chapter 7--especially the car wash program in Section 7.2. Files that you must write: Traffic.java: This is a Java application program for the traffic light simulation. You can start with the version in http://www.cs.colorado.edu/~main/applications/Traffic.java and add your name and other information at the top. You'll have to read and understand all of this program, and you'll implement the specified simlights method. The algorithm for the traffic method will be discussed in class. You'll also discuss what kind of results to expect from the simulation. Other files that you may find helpful: The IntQueue Documentation The Averager Documentation The BooleanSource Documentation The TrafficLight Documentation Traffic Light Synchronization Discussion of the Assignment Most of the information that you need for this assignment is in the Traffic.java file. Some further discussion will be done in class. Michael Main (main@colorado.edu)