I have interface :
public interface Myglobal 
{
public int Type =0;
}
Then I have class implement My interface like :
Public class A implements Myglobal 
{
Public class A ()
{
this.type=1; // here error because type final in interface
}
}
I want for evrey class implement the interface to change the value of variable type ... so how I can do it with java ?
 
    