What is "runnable" in Java, in layman's terms? I am an AP programming student in high school, whose assignment is to do research, or seek out from others what "runnable" is (we are just getting into OOP, and haven't touched threads yet).
|
closed as not a real question by Andrew Thompson, Peter O., kiamlaluno, Jean-François Corbett, Stephen C Nov 11 '12 at 2:39
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
A Runnable is basically a type of class (Runnable is an Interface) that can be put into a thread, describing what the thread is supposed to do. The Runnable Interface requires of the class to implement the method
And then use it like this:
If you did not have the Advanced: Anonymous TypeNote that you do not need to define a class as usual, you can do all of that inline:
This is similar to the above, only you don't create another named class. |
||||
|
|
|
To make a class which uses it, just define the class as It can be used without even making a new Thread. It's basically your basic interface with a single method, run, that can be called. If you make a new Thread with runnable as it's parameter, it will call the run method in a new Thread. It should also be noted that Threads implement |
|||||||||
|