-3

我试图在一行代码中打印出整个“f”变量.. f 显然代表女性,但是当我使用我的代码方式时它显示错误?

对不起,我是初学者。

import java.util.*;

class university {
    public static void main(String[] args){
            Scanner scanner = new Scanner(System.in);
            Person2 mPerson, fPerson = null;`

        String fFirstName, fSurname, mFirstName, mSurname;
        int fAge, mAge;

        System.out.println("Please enter the firstname of your favourite female author");
        fFirstName = scanner.nextLine();
        System.out.println("Please enter her second name");
        fSurname = scanner.nextLine();
        System.out.println("Please enter her age");
        fAge = scanner.nextInt();
        scanner.nextLine();

        System.out.println("Please enter the firstname of your favourite female author");
        mFirstName = scanner.nextLine();
        System.out.println("Please enter her second name");
        mSurname = scanner.nextLine();
        System.out.println("Please enter her age");
        mAge = scanner.nextInt();

        fPerson = new Person2(fFirstName, fSurname, fAge);

        System.out.print(fPerson);
    }
}
4

2 回答 2

4

您遇到的问题是您没有阅读任何有关 Java 的教程,并且您试图解决即将出现的问题。

您面临的问题是您没有声明计算机获取您期望他拥有的信息的地方。编码不是一件神奇的事情,你得到你写的东西。

您缺少的是类中toString()方法的实现Person2

@Override
public String toString() {
 return fFirstName 
}

不要浪费更多时间来解决平台问题并尝试阅读试用版

于 2013-10-27T23:27:47.473 回答
0

为 Person 类实现 toString() 方法,只打印对象不会打印值。

public String toString() {
   //format the way you want the values to be printed
   return fFirstName + " " + fSurname + " " + fAge;
}
于 2013-10-27T23:29:33.673 回答