what is multithreading in c++ ,
what is difference between multithreading and
singlethreading.
Answer Posted / kanthi
Multithreading in c++???
As far as i know, c++ does not provide any language level
support for multithreading. If it is to be implemented
using c++, then it cannot be done without the support of
the underlying operating system which makes things a little
more complicated, unlike java, where a language level
support is provided for the same.
And, difference between multithreading and single-
threading: Multithreading is one form of multitasking where
a single big task is divided into independent, simultaneous
operations which can run together so that subtasks
independent of eachother can be implemented at once to
improve efficiency.
| Is This Answer Correct ? | 21 Yes | 16 No |
Post New Answer View All Answers
What is a superclass in oop?
How oops is better than procedural?
Why is polymorphism important in oop?
Can we have inheritance without polymorphism?
What is overriding in oop?
What is abstraction in oops?
which feature are not hold visual basic of oop?
How to hide the base class functionality in Inheritance?
What is oops and why we use oops?
write a program to enter a string like"sunil is a good boy and seeking for a job" not more than 10 characters including space in one line,rest characters should b in other line.if the next line starts from in between the previous word,then print whole word to next line.
Can a varargs method be overloaded?
Is abstract thinking intelligence?
What are the benefits of oop?
Why multiple inheritance is not allowed?
to find out the minimum of two integer number of two different classes using friend function