编译错误由“新”TMap定义解决,而不是可能的重复引用。我试图说清楚。我是Java Newbee,这是我的第一篇文章。
问题是,就像那时一样,无法从不同的类访问我的TMap。
话虽如此,我的Puts因为随后获得“新”而丢失。如果不重复创建它,我似乎无法访问TMap。事件顺序:Define / init TMap => Put / Get to TMap =>使用“new”获取TMap。
我在Stackoverflow问题中找到了一些类似且好的想法:“从不同的类访问HashMap”。
创建和初始化我的树形图“DataStorage”和Put / Get“PutDataStorage”类工作正常(成功加载并能够获取这些记录)。
我尝试使用“新”DataStorage获取(因为我还没有想到如何访问该表),因为我创建了一个新的Tmap失败了。
我错过了这些例子中的一些东西。也许一个完整的例子可以帮助我而不是碎片。我喜欢这些碎片的概念但是,我现在太新了,无法欣赏单个碎片,而且已经花费了太多时间(已经过了几个星期)。
是的,我是新的;)。不知怎的,我会在某个时候解决它。
摘要:
理想情况下,我想要完成的是在一个类中创建和加载我的TreeMap。从一个或多个单独/附加/其他类访问相同的TreeMap。
我现在拥有的:丢失初始加载的数据和地图。无法从其他类访问我的Treemap。
与此同时,我仍在尝试不同的想法,玩包等。
Define / Init Treemap:DataStorage
import java.util.TreeMap;
public class DataStorage {
public static TreeMap<String, Integer> people = new TreeMap<String, Integer>();
}
并且放:PutDataStorage
import java.util.TreeMap;
public class PutDataStorage {
/**
* Run one time "put"
*/
public static void main(String[] args) {
DataStorage storage = new DataStorage();
TreeMap<String, Integer> people = storage.people;
people.put("bob", 2);
people.put("susan", 5);
System.out.println("PutData whole Entry " +people.entrySet());
System.out.println("PutData First Entry " +people.firstEntry());
System.out.println("PutData susan Value " +people.get("susan"));
}
}
获取Treemap:GetDataStorage擦除我之前的put记录,因为我有“new”。我从GetDataStorage出来的唯一记录是solo popeye = 3记录。我需要找到一种方法来访问TMap而无需一遍又一遍地重新创建它。
import java.util.TreeMap;
public class GetDataStorage {
public static void main(String[] args) { //System.out.println("main");
DataStorage storage = new DataStorage();
TreeMap<String, Integer> people = storage.people;
// TreeMap<String, Integer> people = new TreeMap<String, Integer>();
people.get("bob");
people.get("susan");
people.put("popeye", 3);
System.out.println("GetData 1stEntry " +people.firstEntry());
System.out.println("GetData bobValue " +people.get("bob"));
System.out.println("GetData popValue " +people.get("popeye"));
System.out.println("GetData lowerKey " +people.lowerEntry("popeye"));
System.out.println("GetData highKey " +people.higherEntry("popeye"));
}
}
输出:来自Put
PutData whole Entry [bob=2, susan=5]
PutData First Entry bob=2
PutData susan Value 5
输出:来自Get
GetData 1stEntry popeye=3
GetData bobValue null
GetData popValue 3
GetData lowerKey popeye=3
GetData hireKey popeye=3
预期获得的结果应该是:
GetData 1stEntry bob=2
GetData bobValue 2
GetData popValue 3
GetData lowerKey bob=2
GetData highKey susan=5
提前感谢你。
这两个课程再次“静止”。
无论是否创建公共定义的包原因,都可以使用此方法。我创建并测试了两者。如果需要,请注释掉两个类中的包名称。
请注意,我有非升序的put,以证明我的TreeMap导航工作。
不要被答案行的数量惊吓,因为大多数是打印和评论。
PutDS类(创建并加载TreeMap及其记录)。
//package twowherewego;
import java.util.TreeMap;
public class PutDS { // Put DS(Data Storage)
public static TreeMap gettMapCashType(){ System.out.println("PutDS - entered " );
// Create TreeMap=tMapCashType and "put" two records to tMapCashType
TreeMap<String, String> tMapCashType = new TreeMap<String, String>();
tMapCashType.put("C", "Credit Card"); // out of order puts
tMapCashType.put("A", "All");
System.out.println("PutDS " + tMapCashType);
return tMapCashType;
}
}
然后执行PutDS然后放入其他TreeMap记录的“main”类使用TreeMap Navigation关键字获取大量记录:
//package twowherewego;
import java.util.TreeMap;
public class GetDS{ // Get DS(Data Storage)
public static void main(String[] args) {
System.out.println("Works with or without 'towherewego' package cause it is public");
System.out.println("** GetDS main: call PutDS and...");
// Execute PutDS with method=gettMapCashType()
TreeMap<String, String> people = PutDS.gettMapCashType(); //class=PutDS "." method
System.out.println("** back into GetDS main: after call to PutDS ");
// space or no space ='s no difference
people.put("D","popeye"); // notice this "put" has no space
people.put("B", "Bank Card"); // notice this "put" has a space after the ","
System.out.println("{{{ Navigational helpful keywords, etc }}}" );
System.out.println("GetData keySet " +people.keySet()); // key
System.out.println("GetData entrySet " +people.entrySet()); // key and value
System.out.println("GetData 1stEntry " +people.firstEntry()); // 1st entry/key
System.out.println("GetData B_BankCard " +people.get("B")); // get B value
System.out.println("GetData B_lowerKey " +people.lowerEntry("B")); // get B lower
System.out.println("GetData B_highrKey " +people.higherEntry("B")); // get B higher
System.out.println("GetData lastEntry " +people.lastEntry()); // last entry/key
System.out.println("** << End of GetDS >>");
}
}
使用关键字生成/显示跟踪和导航记录。注意:puts是按降序完成的,但TreeMap(默认情况下)按升序重新排列(例如,参见“GetData keySet,... entrySet”)。
Works with or without 'towherewego' package cause it is public
** GetDS main: call PutDS and...
PutDS - entered
PutDS {A=All, C=Credit Card}
** back into GetDS main: after call to PutDS
{{{ Navigational helpful keywords, etc }}}
GetData keySet [A, B, C, D]
GetData entrySet [A=All, B=Bank Card, C=Credit Card, D=popeye]
GetData 1stEntry A=All
GetData B_BankCard Bank Card
GetData B_lowerKey A=All
GetData B_highrKey C=Credit Card
GetData lastEntry D=popeye
** << End of GetDS >>