Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Why no static methods in Interfaces, but static fields and inner classes OK?

I want to know that why interface do not allow static block, but they allow to declare static variable. What if i want to intialize a static variable on some logic.

edit: Earlier i did not post my query in better form but this is my query with sample code. please look into it.

interface A {
    static class XYZ {
        public static void methodA() {
            // some implementation
            System.out.println("methodA");
        }

        public static void methodB() {
            // some more implementation
            System.out.println("methodB");
        }
    }

    void methodC();
}

public class ABC implements A {
    public static void main(String[] args) {
        A.XYZ.methodA();
    }

    @Override
    public void methodC() {
        // TODO Auto-generated method stub

    }
}

Since purpose of interface is to provide a mechanism where users/implementors of the interface can implement the properties( methods) according to their needs. But if i am allowed to add implementation in interface then some how that purpose of interface is defeated, please make me clear why this implementation in the interface is permitted, there must be something that is why and what is that fact, that is what i want to know

share|improve this question
Use Java 8 and you can. – Peter Lawrey Jan 12 at 12:01

marked as duplicate by asgoth, Jigar Joshi, Lukas Knuth, Hovercraft Full Of Eels, Juvanis Jan 12 at 11:28

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

They designed interfaces to not allow implementations; a static block would constitute an implementation, so it is not allowed.

share|improve this answer
1  
yeah, they did. they, you mean the fathers of Java. – Juvanis Jan 12 at 11:28
but we are allowed to give impementation in inner class's method in interface. – guptakvgaurav Jan 12 at 11:42

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