4
Reply

What is the difference between a Struct and a Class?

siva

siva

Jul 29, 2006
4.6k
0

    Struct is a value type and is stored in stack whereas class is a referenc type and stored in heap. You can implement all the object oriented programming techniques on class but not on struct.

    pradeepa nandha
    July 31, 2006
    0

    Struct is a value type and is stored in stack whereas class is a referenc type and stored in heap. You can implement all the object oriented programming techniques on class but not on struct.

    pradeepa nandha
    July 31, 2006
    0

    They have with some of them as follows:
    Struct is used for value types whereas class is used for objects.
    can not use inherit from struct
    I usually use the struct to carry values around in classes...
    And if I remember correctly, although struct has constructor, but it is always empty.
    There are a few more differences which I do not remember at present.

    farshad
    July 31, 2006
    0

    A struct is a group of methods and a class is a class of classes.