I am new to Java. I have problem to understand the relation between anonymous class instance and interface. Refer to the example in this website:
// anonymous instance as a variable
Runnable r = new Runnable()
{
@Override
public void run()
{
//codes
}
};
Thread t1 = new Thread(r, "anonymous 1");
// anonymous instance as a parameter
Thread t2 = new Thread (new Runnable()
{
@Override
public void run()
{
//codes
}
}, "anonymous 2");
Based on the answers in this SO question (http://stackoverflow.com/questions/11069056/why-java-interface-can-be-instantiated-in-these-codes), I have a basic understanding of anonymous class.
However, I don't understand what is this:
Runnable r = new Runnable(){...};
On the right hand side, we created an instance of an anonymous class, so it is an object of a class. On the left hand side, it is an Interface variable.
Why an instance of anonymous class can be assigned to an Interface variable?
Refer to this website:
Thread(Runnable target, String name)
It seems that Thread is expecting the 1st argument to be an Interface variable.