gpt4 book ai didi

java - 为什么finally block 中的变量需要是静态的

转载 作者:行者123 更新时间:2023-12-02 08:49:46 25 4
gpt4 key购买 nike

我使用 Eclipse 进行编程,它告诉我是否要输出“输入字符串”

Cannot make a static reference to the non-static field Input

为什么finally block 中的变量是静态的?

import java.util.Scanner;

public class NameSort {
String Input;
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
try {
System.out.println("Inupt some Text");
while (sc.hasNextLine()){

String Input = sc.nextLine();
System.out.println(Input);
if (Input.toLowerCase().equals("ende")) {
System.exit(0);
sc.close();
}
}

} finally {
if (sc != null)
sc.close();
System.out.print(Input);
}
}
}

最佳答案

在 Java 中,您不能从 static 方法中使用/调用非静态变量/方法。另外,除了以下代码之外,其余代码都是无用的:

import java.util.Scanner;

public class NameSort {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String input;
System.out.println("Inupt some Text");
while (!(input = sc.nextLine()).equals("ende")) {
System.out.println(input);
}
}
}

示例运行:

Inupt some Text
hello
hello
hi
hi
ende

关于java - 为什么finally block 中的变量需要是静态的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60857056/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com