vote up -1 vote down star

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.

flag

closed as no longer relevant by EnderMB Dec 8 '08 at 23:57

9 Answers

vote up 0 vote down check

Move the declarations to your main method:

public class Test {
    public static void main(String args[]) {
        Gig a = new Gig(1, "Queen", "Great", 1);
        Gig b = new Gig(2, "The Killers", "Okay", 1);
        Gig c = new Gig(3, "Panic At The Disco", "Awful", 1);   

        System.out.println("Gig A: " + a.getValue());
        System.out.println("Gig B: " + b.getValue());
        System.out.println("Gig C: " + c.getValue());
    }
}

private 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;    
    }
}
link|flag
I have done exactly this. Firstly this code won't run because the Gig's aren't static. Secondly, once they are declared as static they will print out Panic At The Disco three times. – EnderMB Dec 8 '08 at 22:01
Gig must be in its own file if you want it to be public. If you declare it as private, the above should work all in one file (it works for me). – Adam Jaskiewicz Dec 8 '08 at 22:05
It works! Thanks for all your help. The problem was in the local variables, where one of mine was declared static without me knowing. – EnderMB Dec 8 '08 at 22:08
I just edited this answer to reflect Gig being private. Putting it in its own file would be better, though, as you could then re-use it. – Adam Jaskiewicz Dec 8 '08 at 22:08
Also notice that my declarations are local variables within the main method, not static class variables as you have in your code above. – Adam Jaskiewicz Dec 8 '08 at 22:11
vote up 0 vote down

The problem that you are having is that every time you create a Gig object, it recursively creates three more Gigs that are members of the first one. This keeps going on and on until you overflow the stack. The solution is to either declare all three Gigs as static, or to declare them locally inside one of your methods.

Also, the statement that others have been making about not being able to access c.band is actually incorrect in this situation; you are capable of accessing the private fields of one object from withing the methods of another object of the same class or from within that class's static methods. That said, it is highly recommended that you follow their advice and declare a getter for the fields that you want public.

link|flag
Based on my code, what would be the best way to create three Gigs that are separate entities of each other? At the moment the getters I've used only print the last declared object (or just the local variable within the class). – EnderMB Dec 8 '08 at 21:37
REMOVE the Gig a, Gig b, etc. lines from Gig, and put them wherever you are actually using the Gig objects. – Adam Jaskiewicz Dec 8 '08 at 21:47
Adam: I've tried this. I've moved them within the Test class, and then within the main method to try it again but the problem still remains. – EnderMB Dec 8 '08 at 21:50
Can you please post all the code you have so far? Currently the code in the question is out of date and I don't know exactly which changes you have tried so far (many of them are incompatible with each other). – Adam Jaskiewicz Dec 8 '08 at 21:55
vote up 0 vote down

I've tried every method given so far and the best result I've come up with so far is, after using this for printing (using a getter):

System.out.println("Gig A : " + a.getValue());
System.out.println("Gig B : " + b.getValue());
System.out.println("Gig C : " + c.getValue());

Getting this as output:

Film A : Panic At The Disco
Film B : Panic At The Disco
Film C : Panic At The Disco

For some reason it seems to be using the local variables to write just one name in, then overwrite it with the next. What am I doing wrong to cause this?

link|flag
What is in the getValue() method? I have a feeling you are combining some incompatible ideas presented in this thread. Some of them are telling you to do some small change that should get your existing code to work with minimal modification, while others are suggesting larger design changes. – Adam Jaskiewicz Dec 8 '08 at 21:51
vote up 0 vote down

You'd just have getGigDet() return the String:

public String getGigDet()
    {
    return c.band;
    }

But you have a rather odd structure for your data. Why are your various Gigs defined within the Gig class? It would make more sense to have a Gig class with getters for the various properties, and in whatever class you are using Gig in, have a List of Gigs.

Edit: As for the non-static thing, you have to run getGigDet() on an instance of Gig. Thus, you would need something like this in your main (assuming youu made the change above):

Gig gig = new Gig(...);
System.out.println(gig.getGigDet());
link|flag
vote up 5 vote down

Your code is not structured like a program that will run...

public class Driver {
   public class Gig {
       public int id;
       public String band;
       public String description;
       public int age;

       //Constructor:
       public Gig(int id, String band, String description, int age) {
           this.id = id;
           this.band = band;
           this.description = description;
           this.age = age;
       }

       public static void main(String args[]){
           Gig a = new Gig(1, "Queen", "Great", 1);
           Gig b = new Gig(2, "The Killers", "Okay", 1);
           Gig c = new Gig(3, "Panic At The Disco", "Awful", 1);

           System.out.println(c.band);
       }
   }
}

That should work.

link|flag
So I should define all Gig's within the main method instead of within their respective classes? This gig example is just an example for a recurring problem of mine, but my main problems stem from programs with multiple classes/files. – EnderMB Dec 8 '08 at 20:52
Yes, this is what you should do. A Gig should only contain information and behaviors for ONE Gig. A Band might have several Gigs, so might a Venue or a Tour, but a Gig that contains several Gigs doesn't really make sense. – Adam Jaskiewicz Dec 8 '08 at 21:05
You don't need that 'Driver' outer wrapper for it, it will work file without. – Nerdfest Dec 8 '08 at 21:12
I've tried to place them all within the main method, but whenever I do try to print out the names of all three bands at the three gigs it will always display the band in c three times. – EnderMB Dec 8 '08 at 21:15
Post that code, please. – Adam Jaskiewicz Dec 8 '08 at 21:48
show 2 more comments
vote up -1 vote down

You have two options really.

First is to make the method return the value rather than print it directly:

public String getGigDet() {
    return c.band;    
}

Second is to make the fields public rather than private. Then you can access them directly from your other code.

link|flag
vote up 0 vote down
public String getGigDet() {
    return c.band;    
}

This way, the getDigDet method is returning the band's name. so then you would do something like :

public static void main(String args[]) {
    Gig myGig = new Gig(); //Initialise according to your constructor
    System.out.print(mygig.getGidDet()); //Print the returned value
}
link|flag
If I run that code then if I were to create a new Gig, for example myGig2 and print band from that both would print from myGig2. – EnderMB Dec 8 '08 at 20:58
Actually, they aren't both printing from myGig2. However, both myGig and myGig2 would have their own copy (with the same data) of c stored within the instance, and thus would print the same data when asked to print the value of c.band. – Adam Jaskiewicz Dec 8 '08 at 21:11
vote up -1 vote down

You have made the members private, which means they aren't accessible from outside the class.

The recommended thing to do is create a "getter":

public String getBand() { return band; }

in your Gig class. Then you can System.out.println(c.getBand());

And surely Gigs have venues and dates and supporting acts and prices and and and and ... :D

link|flag
Thanks for the answer, although one problem comes to mind and that's returning more than one value. What if I wanted to return both the band and the rating for c is there any easier way than two getters? – EnderMB Dec 8 '08 at 20:45
Since print(c.band) is being called from inside the Gig class, (it doesn't matter if it's another instance of Gig or not) you already have access to c.band even though it's private. – Bill the Lizard Dec 8 '08 at 20:50
I assumed there was a Gig class and a Test class in which the second bit of code was due to the original question clearly being snippets. The question has been modified since I made my comment to be a single class. – JeeBee Dec 9 '08 at 11:43
EnderMB - yes, you would want a getter for each member of the class you want to be accessible outside. Alternatively make them public. You can also have setters. You can also include logic in the setters, e.g., so you never have null values set in an object. – JeeBee Dec 9 '08 at 11:49
vote up -1 vote down

You can't print c.band because that's a private variable, and so you don't have access to it. If you want to be able to read the value of c from outside the object, you have to make public accessor methods (getC() and setC(String val)).

link|flag
Actually, he does have access to it since this is all defined inside the Gig class. – Bill the Lizard Dec 8 '08 at 20:53
He should not have access to c.band, only to this.band. – Elie Dec 9 '08 at 5:56
Bill, you've done it again, down modding people who had the correct answer originally. – JeeBee Dec 9 '08 at 11:46

Not the answer you're looking for? Browse other questions tagged or ask your own question.