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

What is Global Assembly Cache (GAC) and what is the purpose of it?

2 Answers   Ksb,


What is a garbage collector?

0 Answers  


Difference between Debugging and tracing in .net

1 Answers  


what user controls are and what server controls are and the differences between the two.

0 Answers  


what is managed data and managed code?

2 Answers  






Please explain what is immutability, what is it for and how is it codified?

0 Answers  


What is 'Common Type System' (CTS) in .NET?

0 Answers   NA,


How to get the number after decimal point in .net?

0 Answers  


What is the transport protocol you use to call a seb service soap?

0 Answers  


How to prepare parametrized (with more than one parameters) crystal report. Please tell me the code procedure, if any body can?

0 Answers  


How do you turn off cookies for one page in your site?

3 Answers   Siebel Systems,


What does cil do?

0 Answers  


Categories