C++

TwitterFacebook
Get flash to fully experience Pearltrees

Embedded.com - References vs. Pointers

http://embedded.com/electronics-blogs/programming-pointers/4023307/References-vs-Pointers In C++, references provide many of the same capabilities as pointers. Although most C++ programmers seem to develop some intuition about when to use references instead of pointers, and vice versa, they still encounter situations where the choice isn't so clear. If you'd like to develop a reasonably consistent philosophy about using references, it really helps to know exactly how references differ from pointers.

C++ tutorial for C users

http://www.4p8.com/eric.brasseur/cppcen.html Home <a href="http://flattr.com/thing/291800/Eric-Brasseur" target="_blank"><img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0" /></a> Contact
Next Previous Contents 18. Threads in C++ IBM pthread User Guide, Thread concepts, API reference http://www.as400.ibm.com/developer/threads/uguide/document.htm and mirror site is at IBM main site QpThread Library for C++ provides object oriented framework in C++ for threads and Unix signals on top of system level threads (currently POSIX Threads) http://lin.fsid.cvut.cz/~kra/index.html ThreadJack supports Java-like multi-thread programming model with platform independent C++ class library http://www.esm.co.jp/divisions/open-sys/ThreadJack/index-e.html and here is the download-site APE is the "APE Portable Environment" and class libraries for writing portable threaded servers in C++, under UNIX (pthread) and Win32 API's. APE provides portable class abstraction for threads, sockets, file handling, and synchronization objects.

threads in C++

http://www.linuxselfhelp.com/HOWTO/C++Programming-HOWTO-18.html

Windows API Tutorial: Using Threads

Multitasking is one of the most difficult aspects of programming. It makes it even more important to provide a simple set of abstractions and to encapsulate it in a nice object-oriented shell. In the OO world, the natural counterpart of the thread (which is a strictly procedural abstraction) is the Active Object . An active object owns a captive thread that performs certain tasks asynchronously. http://www.relisoft.com/Win32/active.html