在Java Unit Tuple中搜索值
要在JavaTuples的Unit类中搜索值,请使用contains()
方法。
首先让我们看看使用JavaTuples所需的工具。要使用JavaTuples中的Unit类,您需要导入以下包-
import org.javatuples.Unit;
注-下载和运行JavaTuples程序的步骤如果您正在使用EclipseIDE在JavaTuple中运行单元类,请右键单击Project→Properties→JavaBuildPath→AddExternalJars并上传下载的JavaTuplesjar文件。
以下是一个例子-
示例
import org.javatuples.Unit; public class Demo { public static void main(String[] args) { Unit < String > u = Unit.with("Kate!"); //搜索元素 boolean valSearch = u.contains("Kate!"); System.out.println("Is the value in the Unit? " + valSearch); } }
输出结果
Is the value in the Unit? True