gpt4 book ai didi

java - 检查二维数组中的元素是否属于某种数据类型

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

我正在编写一个方法,用于检查传递到可实例化类的构造函数中的文本文件是否包含非数字数据。具体来说,如果数据不能表示为 double 型,则很重要。也就是说,字符不行,整数可以。

到目前为止我所拥有的是:

private boolean nonNumeric(double[][] grid) throws Exception {
boolean isNonNumeric = false;

for (int i = 0; i < grid.length; i++)
for (int j = 0; j < grid[i].length; j++) {
if (grid[i][j] != ) {
isNonNumeric = true;
throw new ParseException(null, 0);
} else {
isNonNumeric = false;
}
}
return isNonNumeric;
}

我似乎找不到应该检查 grid[i][j] 的当前索引的内容。据我了解, typeOf 仅适用于对象。

有什么想法吗?谢谢。

编辑:以下是用于创建 double[][] 网格的代码:

// Create a 2D array with the numbers found from first line of text
// file.
grid = new double[(int) row][(int) col]; // Casting to integers since
// the dimensions of the
// grid must be whole
// numbers.

// Use nested for loops to populate the 2D array
for (int i = 0; i < row; i++)
for (int j = 0; j < col; j++) {
if (scan.hasNext()) {
grid[i][j] = scan.nextDouble();
count++;
}
}

// Check and see if the rows and columns multiply to total values
if (row * col != count) {
throw new DataFormatException();
}

最佳答案

我为您准备了这个示例,希望对您有所帮助。

它可以帮助您将条目类型缩小到您正在寻找的任何类型。

我的entry.txt包括:

. ... 1.7 i am book 1.1 2.21 2 3222 2.9999 yellow 1-1 izak. izak, izak? .. -1.9

我的代码:

public class ReadingJustDouble {

public static void main(String[] args) {

File f = new File("C:\\Users\\Izak\\Documents\\NetBeansProjects"
+ "\\ReadingJustString\\src\\readingjuststring\\entry.txt");
try (Scanner input = new Scanner(f);) {
while (input.hasNext()) {
String s = input.next();
if (isDouble(s) && s.contains(".")) {
System.out.println(Double.parseDouble(s));
} else {
}
}
} catch (Exception e) {

}
}

public static boolean isDouble(String str) {
double d = 0.0;
try {
d = Double.parseDouble(str);
return true;
} catch (NumberFormatException nfe) {
return false;
}
}

}

输出:

1.7
1.1
2.21
2.9999
-1.9

注:我的来源如下

1. http://www.tutorialspoint.com/java/lang/string_contains.htm

2. How to check if a String is numeric in Java

关于java - 检查二维数组中的元素是否属于某种数据类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24254431/

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