我有一个正在进行的简单程序需要声明行
read = new BufferedReader(new FileReader(“marks.txt”));
和
line = read.readLine();
是类变量。我该怎么做?
这是我到目前为止编写的代码。
import java.io.*;
import java.math.*;
public class WriteKong
{
public static String line;
public static BufferedReader read;
public static PrintWriter write;
public static void main(String[] args) throws IOException
{
read = new BufferedReader(new FileReader("marks.txt"));
line = read.readLine();
while(line != null)
{
System.out.println(line);
read.readLine();
}
}
public static void sort()
{
// THIS IS WHAT THE FUNCTION DOES:
// > check the fourth digit in the line
// > if there is no fourth digit then store the mark
// > if mark is less than 50 then write to "fail.txt"
// > if mark is 50 or greater then write to "pass.txt"
}
}
编辑:我希望将这些变量声明为类变量。我不想经历在我使用的所有方法中重新定义相同变量的痛苦。
答案 0 :(得分:2)
它们是代码中的类变量。该代码满足给定的要求。
如果你感到困惑,为什么你的循环没有读取文件中的所有行,因为你从未将新读取的行分配给line
。