C++ Tutorials, Code Examples & Articles
|
|
|
 |
| General
Java, Applets, J2EE,
J2ME, J2SE,
JavaBeans, JavaScript,
JDBC, Jini,
JSP, Servlets,
Swing |
 |
| General
Linux, Apache, MySQL,
PostgreSQL |
 |
| Active
Server Pages, ActionScript,
ASP.NET, C++,
C#, Perl,
PHP, Python,
Visual Basic, VB.NET |
 |
| |
Let the Education
Guide Network help you accelerate your career:
Learn more about...
Cooking
Schools
Culinary
Arts Schools
Online
MBA Programs
Our Web Sites:
Online
Degree Guide
The Vocational
School Guide
|
| |
| CSS,
DHTML, JavaScript |
 |
| ColdFusion,
Dreamweaver, Flash,
FrontPage, GoLive |
 |
| General
Web Services, .NET, SOAP,
UDDI, WSDL |
 |
| 3G,
802.11, EPOC,
i-mode, J2ME,
Palm, Pocket
PC, WAP, Windows
CE, WML, WiMax |
 |
| XML
(General) , ebXML, RSS,
SAX, XSLT,
VoiceXML, WML,
WSDL, XHTML,
XML Schema |
|
|
Tutorials & Training Courses
on CD-ROM
Over 300 Titles to choose from: from Web Design to
Programming, from
Dababases to Certifications. TRY FOR FREE!
Do you need high quality training at an afforable
price?
Do you need training that is easy to follow,
informative and allows you to master complex applications
fast?
Do you need to learn how to master Programming, Web
Design and Graphics?
Click
here to try a FREE Demo &
view the full range of training CD-ROMs
|
|
There are 249 articles & tutorials regarding "C++".
- 1.) C++ Preprocessor: Always Assert Your Code Is Right
- (Page 1 of 4 ) Are you looking for a way to speed up the debugging process in C++? This article explains how to use asserts to do just that, showing that not all macros are evil. If a man begins with certainties, he shall end in doubts; But if he will be content to begin with doubts, He shall end in certainties. [Francis Bacon 1561-1626] Assertive Programming If there is one thing I have learned over the past few years, it is not to underestimate the power of assert(). It comes with...
Found at devArticles.com
- 2.) Multithreading in C++
- ( Page 1 of 11 ) Multithreading is growing in importance in modern programming for a variety of reasons, not the least of which being that Windows supports multithreading. While C++ does not feature built-in support for multithreading, it can be used to created multithreaded programs, which is the subject of this article. It is taken from chapter three of The Art of C++ , written by Herbert Schildt (McGraw-Hill/Osborne, 2004; ISBN: 0072255129). Multithreading is becoming an increasingly...
Found at devArticles.com
- 3.) Who`s Afraid to Be Const Correct? Reading Const Correctly in C++
- ( Page 1 of 6 ) You can do more with the const keyword in C++ than you can in C. Many programmers avoid using it, however, in part because it can be a little tricky to understand at first. Jun Nakamura explains how to use the keyword, and the excellent effect it can have on your code. Introduction The const keyword has become quite versatile when you compare its abilities in C++ to its abilities in C. Unfortunately I have to say that I see more programmers avoiding it than using it to...
Found at devArticles.com
- 4.) A Simple Garbage Collector for C++
- ( Page 1 of 12 ) The use of dynamically allocated memory must be managed, because it has a tremendous effect on the performance of your programs. The current trend in handling dynamic memory seems to be shifting toward an automated approach. While C++ uses the manual approach for managing dynamic memory, this does not mean that it can't be automated in that language -- thus giving the C++ programmer the best of both worlds. This article explains how to do it. It is excerpted from...
Found at devArticles.com
- 5.) C++ in Theory: Why the Double Check Lock Pattern Isn`t 100% Thread Safe
- ( Page 1 of 6 ) Back in January, Jun Nakamura discussed Singletons in a series of three articles, and revisited the subject in May. In the May article, he described the Double Checked Locking Pattern as a way to make Singletons thread safe. Unfortunately, it's not that simple, as he explains in this article. If you wish to catch up with the articles from January covering the Singleton, you may do so here: C++ in Theory: The Singleton Pattern Part 1 C++ in Theory: The Singleton Pattern...
Found at devArticles.com
- 6.) C++ Preprocessor: The Code in the Middle
- (Page 1 of 6 ) In this article, we examine instructions given to the preprocessor and see how they are used in general. The preprocessor handles your code before the compiler interprets it. If you have been wondering just what the preprocessor is used for, this article explains. Whence and what art thou, execrable shape? [John Milton 1608-1674] The Preprocessor and the Compiler Before the compiler interprets your code, the preprocessor handles it. Its task is to scan through your code...
Found at devArticles.com
More articles & tutorials (Index of all articles & tutorials)
|
|