从Java中的Pair Tuple类获取值
该getValueX()
方法用于从Java的PairTuple类中的特定索引处获取值。例如,getValue0()。
首先让我们看看使用JavaTuples所需的工具。要在JavaTuples中使用Pair类,您需要导入以下包-
import org.javatuples.Pair;
注-下载和运行JavaTuples程序的步骤如果使用EclipseIDE在JavaTuples中运行PairClass,则右键单击Project→Properties→JavaBuildPath→AddExternalJars并上传下载的JavaTuplesjar文件。
以下是一个例子-
示例
import org.javatuples.Pair; public class Demo { public static void main(String[] args) { Pair < String, String > p1 = Pair.with("Mobile", "Tablet"); Pair < String, String > p2 = p1.setAt1("Desktop"); System.out.println("Result = " + p2); System.out.println("Get Value: " + p2.getValue0()); } }
输出结果
Result = [Mobile, Desktop] Get Value: Mobile