vote up -1 vote down star

define some costants in a class and then use another class to print them both the classes should be in diferent package in java

flag
You should probably give it a try first, then if you run into any problems, post a specific question. – Andy White Aug 27 at 5:09
-1: This is not a question. – DarkSquid Aug 27 at 5:11
You need to use the "public" and "static" keywords. – Thorbjørn Ravn Andersen Aug 27 at 5:26

closed as not a real question by RaYell, starblue, Andy White, silky, ChssPly76 Aug 27 at 5:14

1 Answer

vote up 0 vote down
public class Class1 {
    public static final int NUMBER_OF_CATS = 2;
    public static final String NAME_OF_DOG = "Howard";
}

public class Class2 {

    public static void main(String[] args) {
        for (int i=0;i<Class1.NUMBER_OF_CATS;++i) {
            System.out.println(Class1.NAME_OF_DOG + " says woof!");
        }
    }
}
link|flag

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