idea写一个左表右表包含key value两项
时间: 2023-12-06 07:05:15 浏览: 96
你可以使用Java语言中的HashMap类来实现左表右表,其中key和value都可以是任意类型的对象。以下是一个简单的示例代码:
```
import java.util.HashMap;
public class TableExample {
public static void main(String[] args) {
HashMap<String, Integer> leftTable = new HashMap<>();
leftTable.put("A", 1);
leftTable.put("B", 2);
leftTable.put("C", 3);
HashMap<Integer, String> rightTable = new HashMap<>();
rightTable.put(1, "One");
rightTable.put(2, "Two");
rightTable.put(3, "Three");
System.out.println("Left Table:");
for (String key : leftTable.keySet()) {
System.out.println(key + " => " + leftTable.get(key));
}
System.out.println("Right Table:");
for (Integer key : rightTable.keySet()) {
System.out.println(key + " => " + rightTable.get(key));
}
}
}
```
在这个示例中,左表使用String类型的key和Integer类型的value,右表使用Integer类型的key和String类型的value。你可以根据自己的需求来选择不同的类型。
阅读全文