How to write Multithreaded applications using C++?
Answers were Sorted based on User's Feedback
Answer / mms zubeir
Well, ISO C++ doesn't provide the mechanisms to control
over operating system devices like thread. We need to use
the support provided by the operating system SDKs or any
third party libraries. For example, Win32's CreateThread()
API would help.
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / peter_2012
It depends most of for what kind of system we will use to
run application.
Linux - standard POSIX pthread library coud be used (it is
C thrading implementation),
Windows - Win32 API,
or we can use boost threading library wich provides sets of
objects for thread creation and synchronization.
| Is This Answer Correct ? | 8 Yes | 2 No |
What are function poinetrs? where are they used?
What is an adaptor class or wrapper class in c++?
How to construct virtual constructor
6 Answers CIStems Software, Symphony,
What is Pure Virtual Function? Why and when it is used ?
Is java as fast as c++?
How a pointer differs from a reference?
What are the advantages of pointers?
What is the difference between a pointer and a link in c ++?
Can we use struct in c++?
whats the size of class EXP on 32 bit processor? class EXP { char c1; char c2; int i1; int i2; char *ptr; static int mem; };
class base { public: int fun(int) {} }; class base2 { public: int fun(float) { } }; so here qustion is both function either function overloading or over riding;
explain the reference variable in c++?