0

我是 Java 新手,谁能解释为什么我得到一个空指针异常?此外,任何人都可以解释除 Scanner 之外的其他可靠输入方法。

错误

线程“主” java.lang.NullPointerException中的异常

在 Theatre.main( Theater.java:18 )

import java.util.Scanner;
public class Theater 
{
    public static void main(String[] args) throws Exception 
    {
        int Screen;
        Screens[] X = new Screens[5];
        Scanner input = new Scanner(System.in);
        do
        {
            System.out.println();
            System.out.println(" '0' to exit");
            System.out.println(" '1-5' for Booking Seats");
            System.out.println(" '10' for Displaying Seating Status");
            System.out.println("Enter Screen Number : ");
            Screen = input.nextInt();
            if(Screen >= 1 && Screen <= 4)
                X[Screen-1].bookSeat();
            else if(Screen == 0)
            {
                System.out.println("Thank You for Booking Seats in PVR Cinemas.");
                System.in.read();
                System.exit(0);
            }
        }while(true);

    }
}
class Screens
{
    private
        int[] Gold = new int[3];
        int[] Platinum = new int[3];
        int[] Diamond = new int[3];
        int g,d,p;
        Scanner input = new Scanner(System.in);
        final int MAX=3;
    public  Screens()
    {
        for( int i=0;i<3;i++)
        {
            Gold[i] = 0;
            Platinum[i] = 0;
            Diamond[i] = 0;
            g = d = p = 0;
        }
    }
    public void bookSeat()
    {
        int n=0,choice,i;
        System.out.println("\t\tMenu");
        System.out.println("1.Gold \tAvailable Seats : "+(3-g));
        System.out.println("2.Platinum \tAvailable Seats : "+(3-p));
        System.out.println("3.Diamond \tAvailable Seats : "+(3-d));
        System.out.println("4.Return to Main Menu");
        System.out.println("Your Choice : ");
        choice = input.nextInt();
        if(choice>=1 && choice<=3)
        {
                    System.out.print("How many Seats ? : ");
                    n = input.nextInt();
                    if( n<=0 )
                    {
                        System.out.println("Please Check your Input.");
                        return;
                    }
                    else if( n>=MAX )
                    {
                        System.out.println("The Maximum Number of Seats is : "+MAX);
                    }
        }
        switch(choice)
        {
            case 1:
                if(g+n >3)
                {
                    System.out.println("Housefull!");
                    break;
                }
                else
                {
                    int total = 0;
                    System.out.print("Seat Numbers are : ");
                    for(i=0;i<n;i++)
                    {
                        Gold[g++] = 1;
                        System.out.print("\t"+g);
                    }
                    total = 100 * n;
                    System.out.println("Total Money to be paid : "+total);
                }
            break;
            case 2:
                if(p+n >3)
                {
                    System.out.println("Housefull!");
                    break;
                }
                else
                {
                    int total = 0;
                    System.out.print("Seat Numbers are : ");
                    for(i=0;i<n;i++)
                    {
                        Platinum[p++] = 1;
                        System.out.print("\t"+p);
                    }
                    total = 125 * n;
                    System.out.println("Total Money to be paid : "+total);
                }
            break;
            case 3:
                if(d+n >3)
                {
                    System.out.println("Housefull!");
                    break;
                }
                else
                {
                    int total = 0;
                    System.out.print("Seat Numbers are : ");
                    for(i=0;i<n;i++)
                    {
                        Diamond[d++] = 1;
                        System.out.print("\t"+d);
                    }
                    total = 150 * n;
                    System.out.println("Total Money to be paid : "+total);
                }
            break;
            case 4:
            break;
            default:
                System.out.println("Sorry, That's an invalid Choice!");

        }
        return;
    }
    public void viewSeats()
    {
        int i;
        System.out.println("Gold Category : ");
        for(i=0;i<3;i++)
        System.out.print("\t "+Gold[i]);
        System.out.println("Platinum Category : ");
        for(i=0;i<3;i++)
        System.out.print("\t "+Platinum[i]);
        System.out.println("Diamond Category : ");
        for(i=0;i<3;i++)
        System.out.print("\t "+Diamond[i]);
    }
}
4

7 回答 7

2

您需要填充您的Scrrens array. 换句话说,您只初始化了 Scrren 数组,但从未初始化其元素。如果您不初始化其元素,它们将获得默认值,在这种情况下为null。猜猜当你在 null 上调用某个方法时会发生什么。你得到的繁荣NPE 。

Screens[] X = new Screens[5];
x[0] = new Screen();
于 2013-03-12T15:13:32.417 回答
2

尽管您初始化了数组X,但您并没有初始化它的成员,因此当X[Screen-1]您使用空对象时(即使索​​引在边界中)。

于 2013-03-12T15:13:40.670 回答
2

因为您的数组X中没有任何元素,所以默认情况下每个元素都初始化为null. 所以基本上你正在尝试这样做,这null.bookseat()会导致NullPointerException.

同样重要的是要注意 if Screenis ever 5(这是您的条件允许的<= 5),那么您将得到一个,ArrayIndexOutOfBoundsException因为您的数组只有索引0,1,2,3,4(总共 5 个)

于 2013-03-12T15:13:52.777 回答
2

你得到一个 NullPointerException 因为你已经声明了一个数组来保存 5 个屏幕对象但是你从来没有用一个实际的屏幕对象初始化 5 个插槽

因此,当您尝试使用

X[Screen-1].bookSeat();

您正在引用数组中的空元素,当然您不能调用空对象的方法

您可以在使用对象之前添加一个检查并初始化屏幕

if(Screen >= 1 && Screen <= 4) {
    if (X[Screen-1] == null) 
       X[Screen-1] = new Screens();

    X[Screen-1].bookSeat();
}

你的用法也有一些奇怪的地方。数组从零索引开始,但您使用零作为退出程序的值,因此从不使用索引为零的元素。

于 2013-03-12T15:14:01.827 回答
2

X正在创建您的数组,但元素未初始化,它们仍然为空。我认为您期望您的数组初始化如下:

Screens[] X = new Screens[5];
for (int x = 0; x < 5; x++) {
    X[x] = new Screens();
}
于 2013-03-12T15:14:24.757 回答
1

因为Screens[] X = new Screens[5];数组 X 的所有 5 个元素都是空的!

于 2013-03-12T15:16:14.050 回答
1

填充 Screens 数组的另一种方法

Screens[] X = { new Screens(), new Screens(), new Screens(),new Screens(), new Screens() };

您可能会发现使用集合中的列表更有用。

于 2013-03-12T15:51:31.747 回答