+ 1
Which two options allow you to create new threads?
Which two options allow you to create new threads? name your class "Thread" implement Runnable handle exceptions extend the Thread class
2 Answers
0
You can find it on lesson.
Why don't you check it yourself?
2 ways to create a thread :
implement Runnable interface
extend the Thread class.
0
1. Extend the thread class
2. Implement Runnable