True inheritence with plain-old JavaScript
Last Updated: 9 Feb 2008
Page Views: 7,698
Rating: 4.08/5
Votes: 4
Popularity: 2.45
Bookmark Count: 4
Licence: The Code Project Open License (CPOL)
This article describes a technique for making use of inheritence with JavaScript, including inheriting interface, implementation and data from base classes
Simply Object-Oriented C
Last Updated: 15 Dec 2007
Page Views: 7,090
Rating: 3.15/5
Votes: 4
Popularity: 1.90
Bookmark Count: 8
Licence: The Code Project Open License (CPOL)
This document describes a method by which features of Object-Oriented Programming (OOP) can be used in straight C, including Standard/ANSI C, and some variants of pre-ANSI C
How to use NUnit to test native C++ code
Last Updated: 9 Feb 2008
Page Views: 8,971
Rating: 2.00/5
Votes: 3
Popularity: 0.95
Bookmark Count: 9
Licence: The Code Project Open License (CPOL)
Because NUnit is designed to unit test managed code, it does not lend itself to test unmanaged C++ code as easily as C#, Until now!
Copy Constructors and Assignment Operators: Just Tell Me the Rules!
Last Updated: 9 Feb 2008
Page Views: 10,882
Rating: 3.06/5
Votes: 11
Popularity: 3.18
Bookmark Count: 9
Licence: The Code Project Open License (CPOL)
I get asked this question sometimes from seasoned programmers who are new to C++. There are plenty of good books written on the subject, but I found no clear and concise set of rules on the Internet for those who don't want to understand every nuance of the languageāand just want the facts.
An Implementation of the Service Locator Pattern in C++
Last Updated: 19 Feb 2008
Page Views: 7,653
Rating: 3.67/5
Votes: 2
Popularity: 1.10
Bookmark Count: 9
Licence: The Code Project Open License (CPOL)
The Service Locator can be used to decouple classes, which improves the overall design and significantly helps with unit testing.