Site Owners Forums - Webmaster Forums

Site Owners Forums - Webmaster Forums (http://siteownersforums.com/index.php)
-   Java (http://siteownersforums.com/forumdisplay.php?f=12)
-   -   What is multi-threading? (http://siteownersforums.com/showthread.php?t=166417)

Kunal 03-16-2016 12:45 AM

What is multi-threading?
 
What is multi-threading?

Shivangi Panwar 03-16-2016 12:47 AM

Multi threading is a programming concept to run multiple tasks in a concurrent manner within a single program. Threads share same process stack and running in parallel. It helps in performance improvement of any program.

priyankagupta 06-03-2016 06:31 AM

Multi-threading in java is a process of executing multiple threads simultaneously. The thread is basically a lightweight sub-process, the smallest unit of processing. Java Multi-threading is mostly used in games, animation etc.

SaraSanjay 06-06-2016 10:49 PM

Multithreaded programs contain two or more threads that can run concurrently. ...

SaraSanjay 06-06-2016 11:01 PM

An instance of Thread class is just an object, like any other object in java.

Kiara 07-01-2016 12:50 AM

Multithreading is also known as Thread-based Multitasking. The main purpose of multithreading is to provide simultaneous execution of two or more parts of a program to maximum utilise the CPU time. A multithreaded program contains two or more parts that can run concurrently. Each such part of a program called thread.

technoligent 07-01-2016 10:33 PM

Hi,

Following are the basic definition of multi-threading

The capacity to run a several elements of a solitary program at the same time, transcendently by using a few processors, yet possibly, by time-sharing their asset necessities.

Thanks

Manya Johnson 07-09-2016 06:48 AM

In multithreading, programs can perform multiple operations at once. Multithreading is also known as Thread-based Multitasking.

Shivangi Panwar 07-11-2016 12:14 AM

What is ternary operator?
 
What is ternary operator?

rekhaweb 07-13-2016 10:42 PM

Java is amulti threaded programming language which means we can develop multi threaded program using Java. A multi threaded program contains two or more parts that can run concurrently and each part can handle different task at the same time making optimal use of the available resources specially when your computer has multiple CPUs.

sashwatmegh 07-24-2016 11:19 PM

Multi threading enables you to write in a way where multiple activities can proceed concurrently in the same program.

ManviSen 07-27-2016 04:51 AM

Multithreaded programs contain two or more threads that can run concurrently. This means that a single program can perform two or more tasks simultaneously.

Aashi 08-07-2016 11:55 PM

Multi-threading is the ability of an operating system to execute different parts of program, known as threads, simultaneously.

addisoncave 08-19-2016 10:40 PM

multi threading is the ability of an operating system to execute different blocks of codes, known as thread, simultaneously. The concept of multi-threading is quite simple. As we know computer code can't run simultaneously, so OS just stop and start the program for nano seconds as they look to be run simultaneously.


All times are GMT -7. The time now is 06:19 PM.


Powered by vBulletin Copyright © 2020 vBulletin Solutions, Inc.