gpt4 book ai didi

java - Java中调用主类中的方法和其他类的区别

转载 作者:行者123 更新时间:2023-11-30 02:35:05 25 4
gpt4 key购买 nike

我有 3 个类,Mainn、ReadFile 和 Entry。

ReadFile 基本上是我的类,它执行所有文件 I/O 操作。

为什么我能够在 Mainn 类中访问 ReadFile,但是当我尝试在条目“e.openFile()”中访问它时,我收到一条错误,指出需要标识符。

我知道这个可以通过在 Entry 中创建一个重载方法 openFile() 来解决,但是为什么在 Entry 中需要这个,而不是在主类 Mainn 中?

package homework6;

public class mainn {
public static void main(String[] args){
ReadFile r = new ReadFile();
r.openFile();
//r.readFile();
r.skipFirst();
String x[] = r.getData();
String y[] = r.getData();
String z[] = r.getData();

System.out.println(x[0] + "," + x[1]);
System.out.println(y[0] + "," + y[1]);
System.out.println(z[0] + "," + z[1]);

r.closeFile();
}
}

读取文件:

package homework6;
import java.util.*;
import java.io.*;

public class ReadFile {
Scanner x = null;

public void openFile(){
try{
x = new Scanner(new FileInputStream(
"C:\\Users\\Rohan Vidyarthi\\workspace\\Data.csv"));
}
catch(FileNotFoundException e){
System.out.println("File not found error");
}
}

public void readFile(){
while (x.hasNextLine())
System.out.println(x.nextLine());
}

public void skipFirst(){
x.nextLine();
}

public String[] getData(){ //returns String[] with Date and ADJ Close
String[] temp;
String[] out = new String[2];
temp = (x.nextLine()).split(",");
out[0] = temp[0];
out[1] = temp[6];
return out;
}

public boolean checker(){
return x.hasNextLine();
}

public void closeFile(){
x.close();
}
}

类条目:

package homework6;

public class Entry extends ReadFile{
ReadFile e = new ReadFile();
e.openFile();

double minn = Double.MAX_VALUE;
double maxx = Double.MIN_VALUE;

/*public String[] rMax(){
String[] temp1;
String[] temp2;
}
*/
}

最佳答案

我建议您移动您的openFile() 的逻辑 ReadFile类构造函数如下所示,这种方法将为您带来两个优点:

(1) scanner (这是 ReadFile 类的强制变量)在类构造函数内进行初始化,这更有意义并避免了所有 NullPointerException即,有人在 openFile() 之前不小心先调用了其他方法(始终确保所有强制实例变量,即数据由构造函数初始化,我强烈建议将其作为一种实践,并且绝不允许自由创建任何对象,而不是通过构造函数初始化强制变量将避免大多数问题)。

(2) 它会自动解决您的问题,因为您无需调用 openFile()方法(好吧,您本身没有该方法,ReadFile 构造函数已初始化扫描仪)。

public class ReadFile {
Scanner x = null;

public ReadFile() {
try{
x = new Scanner(new FileInputStream(
"C:\\Users\\Rohan Vidyarthi\\workspace\\Data.csv"));
}
catch(FileNotFoundException e){
System.out.println("File not found error");
}
}

public void readFile(){
//add code
}

public void skipFirst(){
//add code
}

public String[] getData(){
//add code
}

public boolean checker(){
return x.hasNextLine();
}

public void closeFile(){
x.close();
}
}

只需确保您不需要调用 openFile()如下图:

public class Entry extends ReadFile{
ReadFile e = new ReadFile();//initializes scanner as well

public String[] readFile() {//add any methods you like here in this like
return e.readFile();
}

double minn = Double.MAX_VALUE;
double maxx = Double.MIN_VALUE;
}
<小时/>

How come I am able to access ReadFile in my Mainn class just fine, but when I try to access it in Entry "e.openFile()" I get an error that says identifier expected.

在Java中,任何方法调用(例如您的 r.openFile() )都应该从另一个方法或构造函数或初始化程序(静态或实例初始化程序)中完成,因此答案就在您的 Mainn 中。类,您正在调用openFile() 内部来自main(String[] args)方法,而在你的 Entry 中给你上个课 openFile()方法调用未包装在任何上述代码块(即方法、构造函数、初始化器)内。

更重要的一点是,一般来说,当您在面向对象语言中说A扩展B时,这意味着A是B的A类型,但是在您的代码Entry extends ReadFile没有多大意义,所以你应该避免这样做。

关于java - Java中调用主类中的方法和其他类的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43303370/

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