Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is the difference between Class and structure’s
What is the difference between Class and structure’s ?
✍: Guest
Following are the key differences between them :-
? Structure are value types and classes are reference types. So structures use
stack and classes use heap.
? Structures members can not be declared as protected, but class members can
be. You can not do inheritance in structures.
? Structures do not require constructors while classes require.
? Objects created from classes are terminated using Garbage collector. Structures
are not destroyed using GC.
2007-10-23, 6746👍, 0💬
Popular Posts:
What is V model in testing? V model map’s the type of test to the stage of development in a project....
What will be printed as the result of the operation below: main() { int x=20,y=35; x=y++ + x++; y= +...
How To Get the Minimum or Maximum Value of an Array? - PHP Script Tips - PHP Built-in Functions for ...
How To Create Nested Tables? - XHTML 1.0 Tutorials - Understanding Tables and Table Cells You can cr...
interview.FYIcenter.com offers a collections of interview questions and answers for software and Web...