0

航空管制システムを作っています。プレーンがランダムに生成されたときに名前が変更されるという変更が観察されるプレーンというクラスがあります。問題は、空港が名前にアクセスして、配列リストに格納する必要があることですが、機能させることができれば、おそらくキューです。とにかく、これは空港クラスのコードです:

    /*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package airtrafficcontrolv3;
import java.util.*;
import java.util.logging.Level;
import java.util.logging.Logger;

/**
 *
 * @author
 */
public class Airport
{
        Subject s = new SubjectImpl();

    Plane point = new Plane();
    Queue <String> waiting = new LinkedList<String>();

    public Airport()
    {
        //String name =
        s.getState();
        System.out.println(s);

        while (!waiting.isEmpty())
        {
            System.out.println("Waiting to take off: "+waiting);
            try
            {
                System.out.println("Preparing to taxi: "+waiting.remove());
                Thread.sleep(5000);
            }
            catch (InterruptedException ex)
            {
                Logger.getLogger(Airport.class.getName()).log(Level.SEVERE, null, ex);
            }
        }
    }

}

観察されている対象にアクセスする必要があるかどうかはわかりませんでした。件名には、現在指されている getstate メソッドがあるためです。ただし、乱数と文字で生成されます。

airtrafficcontrolv3.SubjectImpl@5a199939

これは私のサブジェクトクラスにあるものです:

    package airtrafficcontrolv3;

/*
 * @author S0082708
 */

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

interface Subject
{

    public void addObserver(Observer o);

    public void removeObserver(Observer o);

    public String getState();

    public void setState(String state);
}

/*
 * Creates an observer that will watch for any changes
 */

interface Observer
{
    public void update(Subject o);
}

/*
 * Class implements the observer
 * Observer is what is doing the watching
 * The string is set to blank waiting ready for any updates that will occur
 * Anything in getState is then passed to state
 */
class ObserverImpl implements Observer
{
    private String state = "";

    public void update(Subject o)
    {
        state = o.getState();

        //Need to add text to the label
       // AirTrafficControlv3View.Incoming.add(state);

    }
}

/*
 * Subject is what is being watched
 * The array is then created to store the information ready to add further information
 * Or ready to delete
 * State is set to blank ready for whatever information is being passed
 */

class SubjectImpl implements Subject
{

    private List observers = new ArrayList();
    private String state = "";

    /*
     * Returns whatever is being passed to state
     */

    public String getState()
    {
        //System.out.println(state);
        return state;
    }

    /*
     * Sets the state to current state and then notifies the observer of the changes
     * Made to the state ready to update
     */
    public void setState(String state)
    {
        this.state = state;
        notifyObservers();
    }

    /*
     * Adds the observer along with the name, so several observers can be implemented
     */
    public void addObserver(Observer o)
    {
        observers.add(o);
    }

    /*
     * Removes the observer once it has been used
     */

    public void removeObserver(Observer o)
    {
        observers.remove(o);
    }

    /*
     * The iterator allows the ability to loop through the array
     * While the iterator has a next then it allows the ability to take in more
     * Changes to be observed. It is then updated with the current information
     */

    public void notifyObservers()
    {
        Iterator i = observers.iterator();
        while (i.hasNext())
        {
            Observer o = (Observer) i.next();
            o.update(this);
        }      
    }
}

KLM の罰金として出てくる get state から文字列を取得する方法について、誰かが私を正しい方向に向けることができますが、空港クラスでは出てきません。

どんな提案も大歓迎です。

4

1 に答える 1

0

取得した乱数toString()から返されるオブジェクトのクラスにを実装する必要があります。これは、コンテンツではなくインスタンス ID を提示するクラスのデフォルトの実装です。getState()toString()Object

于 2012-04-07T10:32:23.507 に答える