Walmart interview question

Implement Java multi threading callable interface

Interview Answer

Anonymous

Jan 4, 2022

Threads can be created by extending Thread class & by implementing Runnable. But these cannot return result hence Callable is introduced which can return result to main thread via FutureTask. FutureTask has both Callable & Runnable implemented.