---
title: "Explain how to create a thread and start it running."  
description: "Explain how to create a thread and start it running."  
author: "Anonymous User"  
published: 2015-01-26  
updated: 2020-09-14  
canonical: https://www.mindstick.com/interview/2308/explain-how-to-create-a-thread-and-start-it-running  
category: "java"  
tags: ["thread"]  
reading_time: 1 minute  

---

# Explain how to create a thread and start it running.

There are 2 ways in which a thread can be created. \
By extending the Thread class wherein the subclass needs to override the run method. Then just an instance of that class needs to be created and [classname].start() would start it running.

## Answers

### Answer by Anonymous User

There are 2 ways in which a thread can be created. \
By extending the Thread class wherein the subclass needs to override the run method. Then just an instance of that class needs to be created and [classname].start() would start it running.


---

Original Source: https://www.mindstick.com/interview/2308/explain-how-to-create-a-thread-and-start-it-running

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
