从对象向量中获取整数

我使用一种方法从数据库中获取数据并将其存储在向量中。该方法将始终返回一个 Vector of Objects,其中 Object 数据类型可以是 Date、Double 或 String。就我而言,我知道我得到的是 Double,但我想将其转换为 int。有没有比以下更简单的方法:


System.out.println((int)Double.parseDouble(vector1.get(1).toString()));

我尝试过的其他方法无效:


System.out.println((Integer)vector1.get(1)); // java.lang.ClassCastException: java.lang.Double incompatible with java.lang.Integer


System.out.println((int)vector1.get(1));

在此先感谢您的任何建设性回应


慕勒3428872
浏览 89回答 3
3回答

慕后森

按照这个答案,我们可以将代码转换为Double d = vector1.get(1); Integer i = d.intValue();我在这里假设,如果你有一些数组,也许你想将那里的所有数据转换Double成Integervector1.stream().mapToInt(n -> n.intValue()).mapToObj(Integer::new).collect(Collectors.toList());或者vector1.stream().mapToInt(Double::intValue).mapToObj(Integer::new).collect(Collectors.toList());

眼眸繁星

您可以使用 Math.round(double) 获取 int 值。作为双 d = Double.parseDouble(vector1.get(1));int v = (int) Math.round(d);

绝地无双

您可以使用 intValue() 来获取 int 值。Double b = new Double((double)vector1.get(1));    int value = b.intValue();
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java