Go Back   Site Owners Forums - Webmaster Forums > Web Programming > Programming General > Java

Notices


Reply
 
Thread Tools Rate Thread Display Modes
Old 03-16-2016, 12:45 AM   #1
Kunal
Registered User
 
Join Date: Feb 2016
Posts: 73
What is multi-threading?

What is multi-threading?
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Kunal is offline   Reply With Quote

Old 03-16-2016, 12:47 AM   #2
Shivangi Panwar
Registered User
 
Join Date: Nov 2015
Posts: 127
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.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Shivangi Panwar is offline   Reply With Quote
Old 06-03-2016, 06:31 AM   #3
priyankagupta
Registered User
 
Join Date: May 2016
Posts: 4
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.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
priyankagupta is offline   Reply With Quote
Old 06-06-2016, 10:49 PM   #4
SaraSanjay
Registered User
 
Join Date: May 2016
Posts: 551
Multithreaded programs contain two or more threads that can run concurrently. ...
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

Last edited by SaraSanjay; 06-06-2016 at 11:41 PM..
SaraSanjay is offline   Reply With Quote
Old 06-06-2016, 11:01 PM   #5
SaraSanjay
Registered User
 
Join Date: May 2016
Posts: 551
An instance of Thread class is just an object, like any other object in java.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

Last edited by SaraSanjay; 06-06-2016 at 11:41 PM..
SaraSanjay is offline   Reply With Quote
Old 07-01-2016, 12:50 AM   #6
Kiara
Registered User
 
Join Date: Jun 2016
Location: USA
Posts: 55
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.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Kiara is offline   Reply With Quote
Old 07-01-2016, 10:33 PM   #7
technoligent
Registered User
 
Join Date: Feb 2016
Posts: 12
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
technoligent is offline   Reply With Quote
Old 07-09-2016, 06:48 AM   #8
Manya Johnson
Registered User
 
Join Date: Jul 2016
Location: India
Posts: 32
In multithreading, programs can perform multiple operations at once. Multithreading is also known as Thread-based Multitasking.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Manya Johnson is offline   Reply With Quote
Old 07-11-2016, 12:14 AM   #9
Shivangi Panwar
Registered User
 
Join Date: Nov 2015
Posts: 127
What is ternary operator?

What is ternary operator?
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Shivangi Panwar is offline   Reply With Quote
Old 07-13-2016, 10:42 PM   #10
rekhaweb
Registered User
 
Join Date: Jul 2016
Posts: 28
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.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
rekhaweb is offline   Reply With Quote
Old 07-24-2016, 11:19 PM   #11
sashwatmegh
Registered User
 
Join Date: Apr 2016
Location: pune
Posts: 583
Multi threading enables you to write in a way where multiple activities can proceed concurrently in the same program.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
sashwatmegh is offline   Reply With Quote
Old 07-27-2016, 04:51 AM   #12
ManviSen
Registered User
 
Join Date: Jul 2016
Posts: 9
Multithreaded programs contain two or more threads that can run concurrently. This means that a single program can perform two or more tasks simultaneously.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
ManviSen is offline   Reply With Quote
Old 08-07-2016, 11:55 PM   #13
Aashi
Registered User
 
Join Date: May 2016
Location: Ahmedabad, Gujarat
Posts: 14
Multi-threading is the ability of an operating system to execute different parts of program, known as threads, simultaneously.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Aashi is offline   Reply With Quote
Old 08-19-2016, 10:40 PM   #14
addisoncave
Registered User
 
Join Date: Jun 2016
Posts: 169
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.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
addisoncave is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Multi vendor script is now in offer price m.sivarajan Post your ad here 2 05-18-2022 11:51 PM
Multi Vendor Magneto Marketplace Module Extension VictorHill General Discussion 2 02-15-2016 03:13 AM
How to implement multi level filtering in woommerce? arronmattwills Graphic Design 0 11-22-2015 02:01 PM
Multi Vendor Script - Review IT ChristyMathew Review My Website 1 08-21-2014 12:43 AM
Multi vendor ecommerce software script ? paulwalkeerr The Market 0 04-22-2014 10:32 PM


All times are GMT -7. The time now is 05:24 AM.


Powered by vBulletin Copyright © 2020 vBulletin Solutions, Inc.