C++ & C# differences ?



C++ & C# differences ?..

Answer / om nama shivaya

C++ and C# both are object oriented programing languages
but C++ is having one draw back that can be rectified by C#
Draw back in C++ : Multiple Inheritance
Multiple Inheritance is having lot of draw backs .
Multiple Inheritance : Derived class which may contain more
than one base class.
the Draw back is Multiple base classes which are having
same method . so Derived class will get problem while
inheriting the base class methods.
Eaxmple for Multiple Inheritance : Let us consider 4 classes
A(Base class) having Method (MethA)
-----------------------------------------
| |
B(Sub Class)(Meth1) C(Sub Class)(Meth1)
-----------------------------------------
|
D(Derived class) having method(Meth1)
So B,C,D all are having same method (Meth1) with same
signature .now the Problem with Multiple Inheritance is
Their will be clash for class D to inherite base class
method (Meth1) from B and C class.
These problem is rectified in C# by providing solution :
Derived class should not contain morethan one base class
this can be achived by Multiple Interface
Multiple Interface :A class may Inherite one base class and
it can inherit multiple interfaces .

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Dot Net General Interview Questions

How can you clean up objects holding resources from within the code?

2 Answers   Wipro,


Differentiate between managed and unmanaged code?

0 Answers  


What are the new 2.0 features useful for?

0 Answers  


Explain how viewstate is being formed and how it's stored on client in .net?

0 Answers  


What are the Characteristics of .NET?

1 Answers  






What operating systems does the .net framework run on?

0 Answers  


Difference between Panel and GroupBox classes?

3 Answers  


What is Assembly manifest? what all details the assembly manifest will contain.

1 Answers  


Is it true that objects don't always get destroyed immediately when the last reference goes away?

0 Answers  


what is the difference between class and structures?

2 Answers  


What is il and c#?

0 Answers  


What are the difference bbetween value type & reference types ? Example from .net. Integer & struct are value types or reference types in .net?

0 Answers  


Categories