问题
My aim is to create a database like code where i add planets and the year they are found, and once the user inputs planets it shows all the planets and the year they are found, so far i have created this.
import java.util.HashSet;
import java.util.Scanner;
import java.lang.*;
public class sky {
public static void main(String args[]) {
Scanner in = new Scanner(System.in);
// HashSet declaration
HashSet < String > planet =
new HashSet < String > ();
// Adding elements to the HashSet
planet.add("planet A");
planet.add("planet B");
planet.add("planet C");
planet.add("planet D");
planet.add("planet E");
//Addition of duplicate elements will not show
planet.add("planet A");
System.out.println("enter the word");
String input = in .next();
int count = 0;
for (int i = 0; i < input.length(); i++)
{
if (sky.contains(input.HashSet(i))) count++;
}
System.out.println("the planets are");
System.out.println(count);
HashSet < String > date =
new HashSet < String > ();
// Adding elements to the HashSet
date.add("2001");
date.add("2002");
date.add("2003");
date.add("2004");
date.add("2005");
//Displaying HashSet elements
System.out.println(planet);
System.out.println(date);
}
}
errors exsist
回答1:
What you need is not a HashSet but a HashMap. Take a look at the program below and try to understand what exactly is going on here. I'll suggest you read how HashMap works before reading this.
import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
public class sky {
private static Map<String, Integer> planetMap = new HashMap<String,Integer>();
public static void main(String args[]) {
populateDB();
Scanner scanner = new Scanner(System.in);
String planetName = scanner.nextLine();
if(planetMap.get(planetName) != null) {
System.out.println("The planet "+ planetName +" was found in "+ planetMap.get(planetName));
}
else {
System.out.println("Invalid Planet Name");
}
}
public static void populateDB() {
planetMap.put("Earth", 1600);
planetMap.put("Mars", 1500);
planetMap.put("Jupiter", 1100);
planetMap.put("Saturn", 1900);
planetMap.put("Venus", 1300);
}
}
回答2:
Similar to what @bluelurker had, but with the addition of a location field as you needed in chat
Using a custom Planet class instead of a String for the HashMap can let you store much more data about each Planet in an organized manner
import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
public class sky
{
private static Map<String, Planet> planetMap = new HashMap<String, Planet>();
public static void main(String args[])
{
populateDB();
Scanner scanner = new Scanner(System.in);
String planetName = scanner.nextLine();
Planet planet = planetMap.get(planetName);
if(planet != null)
System.out.println("The planet " + planet.name + " was found in " + planet.date + " and is currently located " + planet.location + ".");
else
System.out.println("Invalid Planet Name");
}
private static class Planet
{
public final String name;
public final int date;
public final String location;
public Planet(String n, int d, String l)
{
name = n;
date = d;
location = l;
}
}
public static void populateDB()
{
planetMap.put("Earth", new Planet("Earth", 1600, "here"));
planetMap.put("Mars", new Planet("Mars", 1500, "near us"));
planetMap.put("Jupiter", new Planet("Jupiter", 1100, "over there"));
planetMap.put("Saturn", new Planet("Saturn", 1900, "above us"));
planetMap.put("Venus", new Planet("Venus", 1300, "in the sky"));
}
}
来源:https://stackoverflow.com/questions/34025379/joining-both-hashsets-together