gpt4 book ai didi

java - 如何在java中的其他地方使用计数

转载 作者:行者123 更新时间:2023-12-01 14:48:20 24 4
gpt4 key购买 nike

无论如何,我可以将计数放入变量中。例如。我有 Count 来计算行数。之后,我想使用计数提供的数字,然后将该数字添加到可以在其他地方使用的变量中,例如添加另一个数字,或查找百分比或使用该数字创建饼图。

public void TotalCount12() throws FileNotFoundException  {
Scanner file = new Scanner(new File("read.txt"));
int count = 0;
while(file.hasNext()){
count++;
file.nextLine();
}
System.out.println(count);
file.close();

我想使用我将得到的数字,并在其他地方使用它(例如另一种方法),但我不知道该怎么做。

谢谢。

最佳答案

首先,我建议您完成此javatutorial如果您是编程新手。

如果您在类中将其定义为方法外的全局变量(作为类的属性),则可以在类中的每个方法中使用它。

但是,如果您有关于在不同类的项目的任何地方使用它的问题,您可以使用 singleton design pattern ;

public class ClassicSingleton { 
private static ClassicSingleton instance = null;
protected ClassicSingleton() {
// Exists only to defeat instantiation.
}
public static ClassicSingleton getInstance() {
if(instance == null)
{
instance = new ClassicSingleton();
}
return instance;
}
}

关于java - 如何在java中的其他地方使用计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15159599/

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