- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在对解析的文本文件数据执行计算时遇到问题。该程序的目标是从文本创建一个 Arraylist,将其发送到类对象,执行计算,然后将其打印到表中。我已正确完成表格,但我的组“类别摘要”和平均值、最小值和最大值似乎只读取文本中的第一个值。对此我能做什么?
主要方法代码
//Variable Initiallization
int year, pressure, wind;
String month, name;
//Reading Data from file/create ArrayList
Scanner inFile = new Scanner(new File("hurricanedata.txt"));
ArrayList<HSelectorV2> datapool = new ArrayList<HSelectorV2>();
while(inFile.hasNextLine()){
datapool.add(new HSelectorV2(Integer.parseInt(inFile.next()),
inFile.next(),
Integer.parseInt(inFile.next()),
Integer.parseInt(inFile.next()),
inFile.next()));
}
inFile.close();
//get arrayList size
int size = datapool.size();
//getting max and mins
int catMin = Integer.MAX_VALUE;
int catMax = Integer.MIN_VALUE;
int pressureMin = Integer.MAX_VALUE;
int pressureMax = Integer.MIN_VALUE;
double windMin = Double.MAX_VALUE;
double windMax = Double.MIN_VALUE;
//maximums
for (HSelectorV2 dataRecord : datapool){
if (dataRecord.getPressure() > pressureMax)
pressureMax = dataRecord.getPressure();
}
for (HSelectorV2 dataRecord : datapool){
if (dataRecord.getWindMPH() > windMax)
windMax = dataRecord.getWindMPH();
}
for (HSelectorV2 dataRecord : datapool){
if (dataRecord.getCategory() > catMax)
catMax = dataRecord.getCategory();
}
//minimums
for (HSelectorV2 dataRecord : datapool){
if (dataRecord.getPressure() < pressureMin)
pressureMin = dataRecord.getPressure();
}
for (HSelectorV2 dataRecord : datapool){
if (dataRecord.getWindMPH() < windMin)
windMin = dataRecord.getWindMPH();
}
for (HSelectorV2 dataRecord : datapool){
if (dataRecord.getCategory() < catMin)
catMin = dataRecord.getCategory();
}
for(HSelectorV2 dataRecord : datapool){
dataRecord.calcCategory();
dataRecord.getCategory();
dataRecord.getPressure();
dataRecord.getWindMPH();
}
HSelectorV2 dataRecord;
//Output
System.out.println("\t\t\tHurricanes 1995 - 2015\n");
System.out.println(" Year\tHurricane\tCategory\tPressure (mb)\tWind Speed (mph)");
System.out.println("=========================================================================");
for(int index = 0; index < datapool.size(); index++){
System.out.println(datapool.get(index));
}
System.out.println("=========================================================================");
for(int i = 0; i < 1; i++){
dataRecord = datapool.get(i);
System.out.printf("%9s%20.2f%16.2f%18.2f\n" , "Average" , dataRecord.getcatAvg(), dataRecord.getpressureAvg() , dataRecord.getwindAvg());//average
System.out.printf("%9s%20d%16d%18.2f\n" , "Maximum" , catMax , pressureMax , windMax);//max
System.out.printf("%9s%20d%16d%18.2f\n" , "Minimum" , catMin , pressureMin , windMin);//min
System.out.println();
System.out.println("Summary of Categories:");
System.out.println("\tCat 1: " + dataRecord.getCat1());
System.out.println("\tCat 2: " + dataRecord.getCat2());
System.out.println("\tCat 3: " + dataRecord.getCat3());
System.out.println("\tCat 4: " + dataRecord.getCat4());
System.out.println("\tCat 5: " + dataRecord.getCat5());
}
目标代码
private int myYear, myWindkts, myPressure, category, cat1, cat2, cat3, cat4, cat5;
private String myMonth, myName;
private double myWindMPH, windAvg, pressureAvg, catAvg;
public HSelectorV2(int year, String month, int pressure, int wind, String name)
{
myYear = year;
myMonth = month;
myPressure = pressure;
myWindkts = wind;
myName = name;
}
//Mutator Method to Calculate WindMPH, create average totals, and calculate category
public void calcCategory(){
myWindMPH = (1.15078) * myWindkts;
windAvg += myWindMPH;
pressureAvg += myPressure;
//category determining
if(myWindMPH > 74 && myWindMPH < 95)
{
category = 1;
catAvg += category;
cat1++;
}
else if(myWindMPH > 96 && myWindMPH < 110)
{
category = 2;
catAvg += category;
cat2++;
}
else if(myWindMPH > 111 && myWindMPH < 129)
{
category = 3;
catAvg += category;
cat3++;
}
else if(myWindMPH > 130 && myWindMPH < 156)
{
category = 4;
catAvg += category;
cat4++;
}
else if(myWindMPH > 157)
{
category = 5;
catAvg += category;
cat5++;
}
}
//Mutator methods for calculating averages
public void catAvg(int size){
catAvg = catAvg / size;
}
public void windAvg(int size){
windAvg = windAvg / size;
}
public void pressureAvg(int size){
pressureAvg = pressureAvg / size;
}
//getter methods
public int getCategory(){
return category;
}
public int getPressure(){
return myPressure;
}
public double getWindMPH(){
return myWindMPH;
}
public double getcatAvg(){
return catAvg;
}
public double getwindAvg(){
return windAvg;
}
public double getpressureAvg(){
return pressureAvg;
}
public int getCat1(){
return cat1;
}
public int getCat2(){
return cat2;
}
public int getCat3(){
return cat3;
}
public int getCat4(){
return cat4;
}
public int getCat5(){
return cat5;
}
public String toString(){
return String.format("%6d%13s%10d%16d%18.2f\n", myYear,
myName , category , myPressure , myWindMPH);
}
最佳答案
你的代码非常复杂。要执行您想要的操作,您需要创建另一个类来生成统计信息,并且不使用相同的 HSelectorV2。这是一个简单的解决方案,我删除了所有不需要的内容:
public class HSelectorV2 {
private int myYear, myWindkts, myPressure, category;
private String myMonth, myName;
private double myWindMPH;
public HSelectorV2(int year, String month, int pressure, int wind, String name)
{
myYear = year;
myMonth = month;
myPressure = pressure;
myWindkts = wind;
myName = name;
}
//Mutator Method to Calculate WindMPH, create average totals, and calculate category
public void calcCategory(){
myWindMPH = (1.15078) * myWindkts;
if(myWindMPH > 74 && myWindMPH < 95)
{
category = 1;
}
else if(myWindMPH > 96 && myWindMPH < 110)
{
category = 2;
}
else if(myWindMPH > 111 && myWindMPH < 129)
{
category = 3;
}
else if(myWindMPH > 130 && myWindMPH < 156)
{
category = 4;
}
else if(myWindMPH > 157)
{
category = 5;
}
}
//getter methods
public int getCategory(){
return category;
}
public int getPressure(){
return myPressure;
}
public double getWindMPH(){
return myWindMPH;
}
public String toString(){
return String.format("%6d%13s%10d%16d%18.2f\n", myYear,
myName , category , myPressure , myWindMPH);
}
}
public static void main(String[] args) throws FileNotFoundException {
//Reading Data from file/create ArrayList
Scanner inFile = new Scanner(new File("hurricanedata.txt"));
ArrayList<HSelectorV2> datapool = new ArrayList<HSelectorV2>();
while(inFile.hasNextLine()){
datapool.add(new HSelectorV2(Integer.parseInt(inFile.next()),
inFile.next(),
Integer.parseInt(inFile.next()),
Integer.parseInt(inFile.next()),
inFile.next()));
}
inFile.close();
//getting max and mins
int catMin = Integer.MAX_VALUE;
int catMax = Integer.MIN_VALUE;
int pressureMin = Integer.MAX_VALUE;
int pressureMax = Integer.MIN_VALUE;
double windMin = Double.MAX_VALUE;
double windMax = Double.MIN_VALUE;
List<Integer> categories = new ArrayList<>();
List<Integer> pressures = new ArrayList<>();
List<Double> winds = new ArrayList<>();
for (HSelectorV2 dataRecord : datapool){
if (dataRecord.getPressure() > pressureMax)
pressureMax = dataRecord.getPressure();
if (dataRecord.getWindMPH() > windMax)
windMax = dataRecord.getWindMPH();
if (dataRecord.getCategory() > catMax)
catMax = dataRecord.getCategory();
if (dataRecord.getPressure() < pressureMin)
pressureMin = dataRecord.getPressure();
if (dataRecord.getWindMPH() < windMin)
windMin = dataRecord.getWindMPH();
if (dataRecord.getCategory() < catMin)
catMin = dataRecord.getCategory();
dataRecord.calcCategory();
categories.add(Integer.valueOf(dataRecord.getCategory()));
pressures.add(Integer.valueOf(dataRecord.getPressure()));
winds.add(Double.valueOf(dataRecord.getWindMPH()));
}
//Output
System.out.println("\t\t\tHurricanes 1995 - 2015\n");
System.out.println(" Year\tHurricane\tCategory\tPressure (mb)\tWind Speed (mph)");
System.out.println("=========================================================================");
for(int index = 0; index < datapool.size(); index++){
System.out.println(datapool.get(index));
}
System.out.println("=========================================================================");
IntSummaryStatistics catStats = categories.stream().mapToInt((c) -> c).summaryStatistics();
IntSummaryStatistics pressureStats = pressures.stream().mapToInt((p) -> p).summaryStatistics();
DoubleSummaryStatistics windsStats = winds.stream().mapToDouble((w) -> w).summaryStatistics();
System.out.printf("%9s%20.2f%16.2f%18.2f\n", "Average", catStats.getAverage(), pressureStats.getAverage(), windsStats.getAverage());//average
System.out.printf("%9s%20d%16d%18.2f\n", "Maximum", catStats.getMax(), pressureStats.getMax() , windsStats.getMax());//max
System.out.printf("%9s%20d%16d%18.2f\n", "Minimum", catStats.getMin(), pressureStats.getMin() , windsStats.getMin());//min
System.out.println();
System.out.println("Summary of Categories:");
System.out.println("\tCat 1: " + categories.stream().filter(c -> c == 1).count());
System.out.println("\tCat 2: " + categories.stream().filter(c -> c == 2).count());
System.out.println("\tCat 3: " + categories.stream().filter(c -> c == 3).count());
System.out.println("\tCat 4: " + categories.stream().filter(c -> c == 4).count());
System.out.println("\tCat 5: " + categories.stream().filter(c -> c == 5).count());
}
关于Java Arraylist 计算仅从文本文件读取第一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48142754/
将一个数组列表分配给另一个数组列表与在两个数组列表之间使用 addAll 方法有什么区别? 1 > arrayList = arrayList;//应该将后面的arrayList的值分配给第一个。 2
所以我在将 ArrayList 添加到我的 ArrayList 时遇到了一些问题。将其想象成一张 table 。 下面是一些示例代码: ArrayList currentRow = new Arra
我一直在尝试转换 ArrayList> to ArrayList> 的字符串 这是我尝试构建的代码。 public void convertString (ArrayList> templist) {
我有一个 ArrayList (alal) 和一个 ArrayList(al) 的 ArrayList。我想将 al 插入 alal,但我希望 alal.get(0) 包含 al 拥有的所有内容以及添
很抱歉标题太长,如果您能想到更好的标题,请告诉我! 我正在做的是尝试创建一个 ArrayList 的 ArrayList 并将 ArrayList 逐个添加到其中。两个AL>我所拥有的称为三角形和正方
我有带有值的 mList2。存在具有相同 id 的值。如何获取具有相同 id 的对象分组的 List 或 ArrayList 并将其添加到 ArrayList>? List mList2 = list
我正在创建一个 ArrayList的 ArrayList并添加 ArrayLists给它。但每次我对 ArrayList 进行更改时, 它反射(reflect)在 ArrayList 中. 示例: L
谁能解释一下ArrayList之间的区别是什么? , ArrayList和 ArrayList是什么时候使用它们?它们在实现层面上是相同的还是各自具有不同的含义? 最佳答案 ArrayList 特别是
这个问题在这里已经有了答案: Java generics: List> = new LinkedList>() is prohibited? (3 个答案) 关闭 9 年前。 为什么这段代码可以编译
我的 arraylistS 在覆盖数组列表中的行为类似于同一个实例。 我用其中一个来操作 i=0; manupulate((ArrayList)theCoveringRootArrayList.get
我们遇到这个错误 java.lang.NullPointerException at java.util.ArrayList.(Unknown Source) at de.mystuf
据我了解,ArrayList 类继承其父“List”类的 equals() 函数来查找两个成员对象是否相同。这是否意味着“contains()”线性搜索(使用“equal”)来查找 ArrayList
这个问题已经有答案了: What is the diamond operator in Java? (2 个回答) 已关闭 7 年前。 正如标题所说,在Java中,这两种语句有什么区别吗? 通常我都能
我正在尝试求解帕斯卡三角形。我有两个用 Java 编写的代码片段,第一个创建 inner ArrayList 几次并且对我来说效果很好。 但是在代码的第二个版本中,如果我修改 inner ArrayL
正如标题所示,我有两个 ArrayList。奇怪的是,在一个数组列表上设置一个值会改变另一个数组列表的值。 一些信息:这些是 Entry 类型的 ArrayList,每个列表都包含一个金额和一个值(这
我已经添加了一个项目到列表 a,然后添加了列表 a 到列表 b 并再次做了同样的事情。 我的问题是,如果我打印 b.get(0) 和 b.get(1),我会得到相同的列表,这两个项目都是 “一”和“二
我正在创建一个 ArrayList of ArrayList of ArrayList 的 ArrayList 并按以下方式填充它。它正确地填充它。我已经通过调试和 println 弄清楚了这一点。但
实现可以在 Arraylist 和 Integer 中存储任何级别的 ArrayList 的 ArrayList 的最佳方法是什么。 List> list = ArrayList(); 仅允许列表中最
在下面的示例中,我将如何将 ArrayList al4 的内容与其他 ArrayList 中的任何一个进行比较?以同样的方式,我将 al1 与 al2 进行了比较。 import java.util.
好的,所以我之前发布了一个线程,它回答了我的很多问题并帮助我改进了我的代码,但是,我遇到了另一个问题,我不知道为什么,但我认为也许该副本只是指向原始对象..(尽管我已尽力避免这种情况) 在我的游戏代码
我是一名优秀的程序员,十分优秀!