gpt4 book ai didi

java - 在main方法中调用

转载 作者:行者123 更新时间:2023-12-01 06:42:54 25 4
gpt4 key购买 nike

我正在文件上使用bufferedwriter并执行了我的代码。但我的问题是将其调用到 main 方法。我该怎么做呢?这是方法的名称:

public void writerof(final String filePath, final int n) throws IOException.....

所以在主要方法中我会说:

writerof("file.txt", 6)

我在 writeof 部分收到错误,它说 writeof 未定义。

此外,这些是我的捕获和最终 block :

    catch (IOException ioe) {

ioe.printStackTrace();

}


finally {

if (writer != null) writer.close();
}

}

有错误吗?

最佳答案

使其静态,例如:

public static void main(String[] args) {
try {
writerof("file.txt", 6);
} catch (IOException e) {
e.printStackTrace();
}
}

public static void writerof(final String filePath, final int n) throws IOException {
System.out.println("my method here");
}
<小时/>

或者也许更好一点:

public static void main(String[] args) {

MyClass z = new MyClass();
try {
z.writerof("file.txt", 6);
} catch (IOException e) {
e.printStackTrace();
}
}

public void writerof(final String filePath, final int n) throws IOException {
System.out.println("my method here");
}

关于java - 在main方法中调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35935214/

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