Technical Interview Question: Is there a bug? » bits and bytes
Continue reading…
Posts tagged with 'C++'
Technical Interview Question: Is there a bug?
Is there a bug in the following C++ code snippet? class Base { public: Base() : m_pBaseIds(new int[200]) { } virtual ~Base() { DelPtrs(); } protected: virtual void DelPtrs() { delete [] m_pBaseIds; } private: int* m_pBaseIds; }; class Derived : public Base { public: Derived() : m_pIds(new int[100]) { } protected: virtual void DelPtrs() […]
Continue reading…
Inheritance Is The Base Class of Evil | GoingNative 2013 | Channel 9
Inheritance Is The Base Class of Evil | GoingNative 2013 | Channel 9
Continue reading…
C# 4.0 Language Specification
Interested in reading through Microsoft C#.net 4.0 language specification? Here’s the download link (word/htm format)… http://www.microsoft.com/en-us/download/details.aspx?id=7029
Continue reading…