How to do multi-threading in VC++ ,net

  • Thread starter Thread starter Kueishiong Tu
  • Start date Start date
-----Original Message-----
How do I do multi-threading in VC++ .net?
Coding samples will be helpful.
.

The easiest way is to download the boost C++ library from
www.boost.org and use their Thread class, which is brain-
dead simple. It hides all the intricacies of messing with
native windows threads. Follow the documentation on how
to install and build boost, then look at the five or so
short examples that are provided with the Thread portion
of the boost library.

Tom
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top