Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can an enum have abstract methods? If so, what is the use, and give a scenario which will illustrate this usage.

share|improve this question
3  
Which language? – Jon Sep 14 '11 at 9:11
3  
in which language ? and this sounds like a homework, if so, please use the homework tag – Cédric Julien Sep 14 '11 at 9:11
1  
JAVA. I have never used an enum with an abstract method. I am trying to understand the scenarios in which i can have such a thing. – java_geek Sep 14 '11 at 9:13
No, you are trying to find out whether you can have such a thing at all. The compiler will tell you that, I don't see why you need a forum. – EJP Sep 14 '11 at 10:45

2 Answers

up vote 5 down vote accepted

Yes, but you may prefer enum which implements an interface, Look here. I think It looks much better. This is example for abstract method:

public enum Animal {
    CAT {
        public String makeNoise() { return "MEOW!"; }
    },
    DOG {
        public String makeNoise() { return "WOOF!"; }
    };

    public abstract String makeNoise();
}
share|improve this answer

Yes, you can define abstract methods in an enum declaration if and only if all enum values have custom class bodies with implementations of those methods (i.e. no concrete enum value may be lacking an implementation).

public enum Foo {
  BAR {
    public void frobnicate() {
      // do BAR stuff
    }
  },
  BAZ {
    public void frobnicate() {
      // do BAZ stuff
    }
  };

  public abstract void frobnicate();
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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