GeekArticles
Java
Core JavaSafe Labels in C++
Author: artima.com |
Published: 2nd Oct 2007 |
Visited: 148 times |
Add CommentFiled in: Core Java
C++ is a language for writing efficient high-performance programs,
and bit manipulations are bread and butter of many such programs.
This article presents a solution to the problem of constraining bit
operations to allow only safe and legitimate ones, and turn all invalid
bit manipulations into compile-time errors.
Read Article Sponsored Links
Related Articles
• TSQLConnection.Connect might not be thread-safe? QC#: 57326 Version: 11.2 Status: Open defect, requires resolution Description: We have a multi-threaded application with, say, 12 worker threads. Each worker thread creates a local copy of TSQLConnection and connects to the database before going into it ...
• A self contained Thread Safe TextBox control This control will eliminate the need to ensure that updates are thread-safe from your main program. Everything is handled automatically the way it should have been in the first pl ...
• nullptr: A Type-safe and Clear-Cut Null Pointer Whether you're using NULL or 0, your C++ apps are subjected to bugs and maintenance problems that are caused by the ambiguity of 0. Find out how to use the nullptr keyword instead of 0 to indicate a null pointer val ...