Click to see the query in the CodeQL repository
A direct call of a Thread object’s run method does not start a separate thread. The method is executed within the current thread. This is an unusual use because Thread.run() is normally intended to be called from within a separate thread.
To execute Runnable.run from within a separate thread, do one of the following:
Construct a Thread object using the Runnable object, and call start on the Thread object.
Define a subclass of a Thread object, and override the definition of its run method. Then construct an instance of this subclass and call start on that instance directly.
In the following example, the main thread, ThreadDemo, calls the child thread, NewThread, using run. This causes the child thread to run to completion before the rest of the main thread is executed, so that “Child thread activity” is printed before “Main thread activity”.
To enable the two threads to run concurrently, create the child thread and call start, as shown below. This causes the main thread to continue while the child thread is waiting, so that “Main thread activity” is printed before “Child thread activity”.
The Java Tutorials: Defining and Starting a Thread.
SEI CERT Oracle Coding Standard for Java: THI00-J. Do not invoke Thread.run().
Java API Specification: Thread.
Java API Specification: Runnable.
Common Weakness Enumeration: CWE-572.