What is the difference between Class and Structure?
Answer Posted / guest
(1)Class Design For Object , Struct Design For Value Thus
Class is Refrence Type (Heape) but Struct is Value Type
(Stack) And Thus Struct is Faster Than Class ,
(2) Class is not Accessable Meanning We Can Access it By
Object , Struct is Accessable Meanning We Can Access it By
Value (Varible).
(3) Class Support Inheritance , Struct Not Support Inheritance .
(4)Class id Added Behavior (Methods) , Struct Not Added
Behavior
(5)Class Exist at higher Level of the Program , Struct Exist
at Lowest Level of the Program .
(6) A struct cannot declare a default constructor (a
constructor without parameters) or a destructor.Class Can .
(7)a small class may be more efficiently handled by the
system if you declare it as a struct instead.
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
Is facebook written in c++?
What are static type checking?
Define a conversion constructor?
Why c++ is created?
What are references in c++? What is a local reference?
In which situation the program terminates before reaching the breakpoint set by the user at the beginning of the mainq method?
How a macro differs from a template?
Is c# written in c++?
What are the unique features of C++.
What's the best free c++ profiler for windows?
why is c++ called oops? Explain
What are pointer-to-members in C++? Give their syntax.
Can a program run without main in c++?
When do we run a shell in the unix system?
What is the use of endl in c++?