This is probably a really stupid question, but it's really starting to bug me so to help all the other newbies I've decided to post it here for the clever programmers to answer.
I have this code, which creates a Gig class and object, where the Object is intended to create many different Gigs to search through.
public class Gig {
private int id;
private String band;
private String description;
private int age;
public Gig(int id, String band, String description, int age) {
this.id = id;
this.band = band;
this.description = description;
this.age = age;
}
public String getValue() {
return band;
}
}
public class Test {
static Gig a = new Gig(1, "Queen", "Great", 1);
static Gig b = new Gig(2, "The Killers", "Okay", 1);
static Gig c = new Gig(3, "Panic At The Disco", "Awful", 1);
public static void main(String args[]) {
System.out.println("Gig A: " + a.getValue());
System.out.println("Gig B: " + b.getValue());
System.out.println("Gig C: " + c.getValue());
}
}
Now, I know fully well that this won't print the band in c because it writes into the local variables at the top. I want to print the output from getGigDet() into my main method in another class, but I'm stumped as to how I would do this.
Any help would be much appreciated.
