2

我正在编写一个程序,但我确信这是一个非常简单的问题。在我的代码中,我希望用户输入一个名称,然后在我创建的 mutator 方法中存储或使用该名称。我无法克服 kb.nextLine 上的错误

import java.util.Scanner;


public class CustomerDriver extends PreferredCustomer {

/**
 * @param args
 */
public static void main(String[] args) {

    String input;

    Scanner kb = new Scanner(System.in);

    PreferredCustomer customer1 = new PreferredCustomer();

    System.out.println("Enter Customer Name: ");
    input = kb.nextLine(customer1.setName(name));
4

3 回答 3

1

移动customer1.setName(name)到下一行:

input = kb.nextLine();
customer1.setName(input);
于 2013-10-22T01:57:44.887 回答
1

如果您想customer1从调用结果中分配 's name nextLine,您需要这样做:

customer1.setName(kb.nextLine());

您不需要中间变量:kb.nextLine()调用的结果将setName作为参数传递给 。

于 2013-10-22T01:58:20.797 回答
1

改成:

customer1.setName(kb.nextLine());
于 2013-10-22T02:00:00.290 回答