Category: Programming Languages
“Hello World” with Java Using Eclipse for Android Development
A good introduction to a new programming language or a good way to test a freshly configured development environment, is to write a small program called “Hello World” and see […]
Optimize by Variable Organization (Packing Data)
Most of us when we are writing code either do not think of how we organize our variable declarations or will organize the variable declarations into readable and logical groups. […]
C++ Enumerations
An enumeration is a data type with a set of named variable values that is defined by the programmer. The strength behind enumerations is the ability to name a set […]
C++ Auto & Decltype
A great introduction to C++ 11 can be found within C++ Primer (5th Edition) . Within the book the author shares two new keywords to c++ auto and decltype. The […]
C++ Singleton
A singleton is a design pattern that will allow only one instance of the object to exist during the execution of the program. The singleton is instantiated the first time […]