For threading, there is Runnable and Thread, which is best to use when?
Anónimo
I struggled with this at first as I have limited exposure with threading. However, Runnable you can implement (interface) while thread you have to extend (inherit). By implementing Runnable, you can extend another class.