我有一个问题? 我有一个带字符串的ArrayList
ArrayList<String> ff = new ArrayList<String>();
ff.add("T1");
ff.add("T1F1");
ff.add("T1F2");
ff.add("T1F3");
现在我想列出一个布尔值列表,其中变量的名称将是ff列表的名称,值为true。
这样的东西看起来如下:
Boolean T1 = new Boolean(true);
Boolean T1F1 = new Boolean(true);
Boolean T1F2 = new Boolean(true);
Boolean T1F3 = new Boolean(true);
之后我怎么能得到布尔变量的名称,什么时候需要我呢?
非常感谢
答案 0 :(得分:2)
如何使用地图?
Map<String, Boolean> theMap = new HashMap<>();
theMap.put("T1", true);
theMap.put("T1F1", true);
theMap.put("T1F2", true);
theMap.put("T1F3", true);