Should I use threads when making a text based operating system in java?

125 Views Asked by At

I am making text based operating system in java and i am wondering if i should use threads. It has a GUI but you type commands and press a button to enter them. Then it spits back out text in a textArea. When should i use threads and how do i use them? Do i need to use threads? I don't really know how to use them and when to use them!

1

There are 1 best solutions below

2
On

Use threads when you don't want the GUI to lock up. For instance, if you have (or foresee) a "cancel ongoing operation that seems to be stuck" button, then that operation better be going on in a separate thread or else your cancel button will be part of what's stuck.

Also, in some environments (e.g., smart phones), if the GUI of a Java program locks up, the operating system will kill the program.

To learn about threads in Java, take a look at the Concurrency tutorials.