我试图将一个float数组返回给我的主类,以便我可以打印并比较数组。
' STR'传递给类的是由全局字符串声明的,取自我主类
上的用户输入主
public static void main (String[] args) {
Scanner sc = new Scanner(System.in);
String input = null;
System.out.print("Please enter a sentence or enter quit to end program: ");
input = sc.nextLine();
while(!input.equals("quit"))
{
System.out.println("The number of characters in the string is: " + BloorS.count(input));
System.out.println("The number of Spaces in the string is: " + Bloor_S.sCount(input));
System.out.println("The number of words in the string is: " + Bloor_S.wCount(input));
Bloor_S.print();
Bloor_S.freq(); //Change
System.out.println();
System.out.print("Please enter a sentence or enter quit to end program: ");
input = sc.nextLine();
}
sc.close();
}
类
public static float[] freq() {
char[] let = {'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'};
float [] freq = new float[26];
int a, b;
char[] char1 = str1.toUpperCase().toCharArray();
for (b = 0; b < str1.length(); b++)
{
for (a = 0; a < 26; a++)
{
if (let[a] == char1[b])
{
freq[a]++;
}
}
}
for (int f = 0; f < 26; f++)
{
freq[f] = freq[f] / strCount;
}
return freq;
}
所以在//Change
的行上我想要使用
for (int i = 0; i < 26; i++)
{
System.out.printf("%6.2f", Bloor_S.freq[i]);
System.out.printf("%3c", '|');
System.out.println();
}
这样我就可以一次打印1个数字。
答案 0 :(得分:1)
您的一般想法似乎很好,但您应该只调用Bloor_S.freq()
一次并将结果保存到变量中。然后使用该变量。它看起来像这样:
float[] freq = Bloor_S.freq();
for (int i = 0; i < 26; i++)
{
System.out.printf("%6.2f", freq[i]);
System.out.printf("%3c", '|');
System.out.println();
}
请注意,使用如此多的静态函数并不像Java那样。面向对象的方法是创建Bloor_S
的实例并在其上调用(然后是非静态的)函数。然后,这些函数可以将它们将作为参数处理的String
作为参数,或者您可以使用单个String
作为构造函数参数。
答案 1 :(得分:0)
float[] freq = Bloor_S.freq();
for (int i = 0; i < 26; i++)
{
System.out.printf("%6.2f", freq[i]);
System.out.printf("%3c", '|');
System.out.println();
}
按照我想要的方式工作。感谢。