Java Tuple 的 setAt0() 方法适用于 Pair 类
setAt0() 方法用于在 JavaTuples 中设置 Pair 值以及在此处在指定索引(即索引为 0)设置新值的副本。
首先,让我们了解使用 JavaTuples 需要知道哪些内容。要在 JavaTuples 中使用 Pair 类,需导入以下包 −
import org.javatuples.Pair;
注意 − 下载并运行 JavaTuples 程序的步骤。如果你使用 Eclipse IDE 在 JavaTuples 中运行 Pair 类,则右键单击 项目 → 属性 → Java 构建路径 → 添加外部 JAR 并上传下载的 JavaTuples jar 文件。
以下是一个示例 −
示例
import org.javatuples.Pair; public class Demo { public static void main(String[] args) { Pair < String, String > p1 = Pair.with("One", "Two"); Pair < String, String > p2 = p1.setAt0("Three"); System.out.println("Result = " + p2); } }
输出
Result = [Three, Two]
广告