When I invoke isAlive(), I saw the code form like: m.thrd.isAlive(). m implements runnable interface. thrd is the object of Thread.
I understand isAlive() is the method of Thread class, we use Thrd.isAlive() to invoke. And we need to let it know m is the thread should be die first. But how to understand object.object.method this format?
Thanks in advance