扫描仪和课程

时间:2015-03-28 01:58:25

标签: java class methods constructor java.util.scanner

我们现在在课堂上做类,构造函数和方法,我得到了基础知识。跳到凌晨2点,在网上搜索4个小时以寻找我的问题的解决方案,我回到Stack Overflow寻找建议。

我已经建立了自己的课程,并且我已经完成了课程设置:

 public class staff 
     {
        private String empName;
        private int prefix;
        private int dialCode;
        private int telNum;
        private double grossSalary;


    public staff( String name, int prefix1, int dial, int celNum, double salary)
     {
        empName = name;
        prefix = prefix1;
        dialCode = dial;
        telNum = celNum;
        grossSalary = salary;
    }

下一部分是我感到困惑的地方。我现在尝试使用扫描仪填充这一切,但我收到一个错误。一如既往,我并不是在寻找一个正确的答案,而是更多地朝着正确的方向努力。这是我的代码的第二部分。

    import java.util.Scanner;

public class staffInfo 
{
    public static void main(String[] args) 
    {
        Scanner input = new Scanner(System.in);

        String staffName  [] = new String [4];
        int staffPrefix   [] = new int    [4];
        int staffDialCode [] = new int    [4];
        int staffCellNum  [] = new int    [4];
        double staffSalary[] = new double [4];

        int i = 0, j = 0;

        for(j = 0; j < staffName.length; j++)
        {
            for(i = 0; i < staffName.length; i++)
            {
                System.out.print("Please enter staff name and press return : ");
                staffName [i] = input.nextLine();
                System.out.print("Please enter there cell number prefix : ");
                staffPrefix [i] = input.nextInt();
                System.out.print("Please enter dialing code : ");
                staffDialCode[i] = input.nextInt();
                System.out.print("Please enter cell number : ");
                staffCellNum[i] = input.nextInt();
                System.out.print("Please enter there salary : ");
                staffSalary[i] = input.nextDouble();
            }
            staff staff[j] = new staff(staffName,staffPrefix,staffDialCode,staffCellNum,staffSalary);
        }

    }

}

1 个答案:

答案 0 :(得分:0)

你的最后一行不会编译。

查看您传递给员工类构造函数的参数,类型是否匹配?

此外,您必须将人员阵列的声明与分配分开。你为staffName,staffPrefix等做了那么好。