在 Java 中使用 with() 方法创建 LabelValue Tuple
你也可以使用 with() 方法创建 LabelValue tuple。with() 方法的参数是 LabelValue 类的标签和值。
首先,我们看看需要了解哪些 JavaTuples 知识。要在 JavaTuples 中使用 LabelValue 类,需要导入以下包
import org.javatuples.LabelValue;
注意 下载 JavaTuples Jar 库才能运行 JavaTuples 程序。如果你使用的是 Eclipse IDE,则右键单击 Project -> Properties -> Java Build Path -> Add External Jars,再上传下载好的 JavaTuples jar 文件。有关运行 JavaTuples 的全部步骤,请参阅以下指南
步骤 − 如何在 Eclipse 中运行 JavaTuples 程序
下面是使用 with() 方法实现 LabelValue JavaTuples 类的一个示例
示例
import org.javatuples.LabelValue; public class Demo { public static void main(String[] args) { LabelValue<String, String> lbValue = LabelValue.with("Jacob", "Tom"); System.out.println("Elements in the LabelValue Tuple = "+lbValue); } }
输出
Elements in the LabelValue Tuple = [Jacob, Tom]
广告