Is there any class in c++ which is superclass of all the classes?

c++

Solution

Standard native C++ does not have any such class, but the C++ .NET variant (just like other .NET languages like C#, VB.NET) does have it: it is conveniently called Object (http://msdn.microsoft.com/en-us/library/system.object.aspx)

It is, however, a managed language, requiring .NET framework installed to run compiled programs. ( Like in Java)

Problem

Like java `Java.lang.Object` is the super-class for all the classes so in C++ is there any class like `Object`?

Original source

Related problems