How to construct an Apache Commons Lang Rangelt;Integergt; object?(如何构建 Apache Commons Lang Rangelt;Integergt;目的?)
问题描述
如何创建 Apache Commons Lang 3.1 Range
对象?
JavaDocs 说:
<块引用>从最小值到最大值的不可变对象范围."
<块引用>
"这些对象要么是 Comparable 的实现,要么你需要提供一个 Comparator."
但是当我尝试时:
范围<整数>range = new Range<整数>(100, 200);
我在我的 IDE 中收到一个错误,指出所需的参数是整数、整数、比较器.
尽管 Integer
实现了 Comparable
接口,因此我不需要额外的比较器.
谁能给我一个如何构造上述 Range
对象的例子?
Range 的构造函数似乎是私有的,因此静态方法可能是构造对象的首选方式.
例如,您可以使用静态方法 between
来构造 Range:
Range.between(100, 200);
不过还有其他的静态方法,就看你需要什么了.
How can I create a Apache Commons Lang 3.1 Range<Inreger>
object?
The JavaDocs say:
"An immutable range of objects from a minimum to maximum point inclusive."
"The objects need to either be implementations of Comparable or you need to supply a Comparator."
But when I try:
Range<Integer> range = new Range<Integer>(100, 200);
I get an error in my IDE that says required arguments are Integer, Integer, comparator.
Even though Integer
implements the Comparable
interface and thus I shouldn't need a extra comparator.
Can someone give me an example of how to construct the above described Range<Integer>
object?
The constructor of Range appears to be private so a static method may be the preferred way of constructing the object.
For example, it looks like you could use the static method between
to construct a Range:
Range.between(100, 200);
However there are other static methods, it just depends what you need.
这篇关于如何构建 Apache Commons Lang Range<Integer>目的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何构建 Apache Commons Lang Range<Integer>目的?
基础教程推荐
- 如何对 HashSet 进行排序? 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01