|
|
- A Practical Use of Java's Reflection API: - The reflection API of Java provides a capability with no equivalent in C or C++. You can add new capabilities to your system at the runtime.

- Implementing Read-Write Locks in Java: - Read-write lock allows multiple threads to acquire a read lock provided no other thread currently has a write lock on the same object. A thread can acquire a write lock if no other thread owns either a read lock or a write lock.

- Run-Time Type Identification in C++: - RTTI provides the capability to develope loosely coupled systems. C++ supports RTTI for polymorphic objects as they go through late binding.

- Tech-tips and Notes: - A searchable log of things that everyone seems to know but at times when you need to use it, you want a place to quickly look it up (like just to check the syntax).

 
|
|
|