public Board(String nam) {
AllLocations.add(new Utility("Go", 1, 00.00) {
});
AllLocations.add(new Street("Forum", 2, 60.00, 2, ColourGroup.PURPLE) {
});
AllLocat ions.add(new Utility("Community Chest", 3, 00.00) {
});
AllLocations.add(new Street("Batchwood Hall", 4, 60.00, 4, ColourGroup.PURPLE) {
这是我的董事会类的构造函数的示例,我想要做的是有一个外部txt文件,我可以通过石灰读取每行上面添加的每行。
例如,txt文件将是go,1,00.00
forum,2,60.00, 2 ColourGroup.PURPLE
community chest, 3, 00.00
Batchwood Hall, 4, 60.00, ColourGroup.PURPLE
感谢。