# Start Thread Execution

**1) start():**

Calling start() on a Thread instance creates a new thread of execution, which exe- cutes run(). **You can call start() on a thread that’s in the NEW state**. Calling start() from any other thread state will throw an IllegalThreadStateException:

![](/files/-LTxDGugh3XwN4R6o9w8)

![](/files/-LTxDJONGBF4hQvIGor_)

![](/files/-LTxDlRMCyBqK-ryi1cy)

Calling run() on a Thread instance doesn’t start a new thread of execution. The run() continues to execute in the same thread.

#### Problem:

![](/files/-LTxGRlTXldpAAhwMbo5)

![](/files/-LTxGdx_04KnEp8pFMsK)

###


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://gyansetu-java.gitbook.io/core-java/threads/methods-of-thread/start-thread-execution.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
