0

这是一个包含 3 个类文件的 java 作业。问题是当我在 main 中调用“doOperations”方法时。if 语句正确读取文件,但对象方法不起作用(例如 tv.on、tv.volumeUp tv.setChannel(scan.nextInt() 等))。

谁能看到我哪里出错了?谢谢。

电视类文件。

import java.io.*;
import java.util.Scanner;

public class TV {
    boolean on;
    boolean subscribe;
    int currentchannel;
    int indexChan;
    int volume;
    File chanList;
    Scanner chanScan;
    TVChannel[] channels;
    final int MaxChannel = 100;

    public TV(){
        on = false;
        currentchannel = 1;
        volume = 1;
        channels = new TVChannel[MaxChannel];   //Create object of an array, default value = null.
        subscribe = false;

    }

    public void turnOn(){
        on = true;
    }
    public void turnOff(){
        on = false;
    }
    public void channelUp(){
        currentchannel++;
    }
    public void channelDown(){
        currentchannel--;
    }
    public void volumeUp(){
        volume++;
    }
    public void volumeDown(){
        volume--;
    }
    public TVChannel getChannel(){
        return channels[currentchannel];
    }
    public void setChannel(int c){
        if(channels[c]!= null)
        currentchannel = c;
    }
    public boolean subscribe(String provider) throws IOException{
        chanList = new File(provider);
        chanScan = new Scanner(chanList);

        if(chanList.exists()){
            while(chanScan.hasNext()){

                indexChan = chanScan.nextInt();
                channels[indexChan] = new TVChannel(indexChan, chanScan.nextLine());

            }
            chanScan.close();
            return true;
        }
        else return false;
    }

    public void printAll(){
        for(int i = 0; i < MaxChannel; i++){

            if(channels[i]!= null)
            System.out.println(channels[i].channelNumber+"\t"+channels[i].channelName);
        }
    }

    public void displayChannel(int c){
        if(channels[c]!= null)
        System.out.println(channels[c].getChannel()+"\t"+channels[c].getName());
    }
    public void displayCurrentChannel(){
        if(channels[currentchannel] != null)
        System.out.println(channels[currentchannel].getChannel() +" "+ channels[currentchannel].getName());
    }
}

主功能

import java.io.File;
import java.io.IOException;
import java.util.Scanner;


public class TestTV {

    public static void main(String[] args) throws IOException{


        TV tv = new TV();
        tv.subscribe("chan.txt");

        if(tv.subscribe = true){
            tv.printAll();
            doOperations("operations.txt", tv);

        }

    }
    //Static means only one instance of object. 
    public static void doOperations(String opFileName, TV tv) throws IOException{
            File op = new File(opFileName);
            Scanner scan = new Scanner(op);
            String opa = scan.next();

            while(scan.hasNext()){
                System.out.println(scan.next());

                if(opa.equals("on")) tv.turnOn();
                else if(opa.equals("off")) tv.turnOff();
                else if(opa.equals("channelUp")) tv.channelUp();
                else if(opa.equals("channelDown")) tv.channelDown();
                else if(opa.equals("volumeUp")) tv.volumeUp();
                else if(opa.equals("volumeDown")) tv.volumeDown();
                else if(opa.equals("showChannel")) tv.displayCurrentChannel();
                else if(opa.equals("setChannel"))tv.setChannel(scan.nextInt()); //Error
            }
            scan.close();
        }

}
4

2 回答 2

1

你忘了把它 String opa = scan.next();放在 while 循环中。当然,您需要将结果存储在每个令牌上。

while(scan.hasNext()){
    opa = scan.next();
    System.out.println(opa); //don't just call scan.next() 
                             //and discard the result. Unless that's really what you want?
    .....
}
于 2013-01-24T17:30:09.450 回答
0

你的代码没有错。确保您的 operation.txt 看起来像这样 showChannel setChannel 2

注意:因为你是 scan.next(); 在 while 循环之前并在循环中再次作为 System.out.println(scan.next()); 您将忽略 operation.txt 的第一行,您会看到它正确设置了频道。

建议:改成

     String opa= "";// = scan.next();
        while(scan.hasNext()){
            System.out.println(scan.next());
于 2013-01-24T18:18:19.290 回答