5
Reply

what is difference between class and object

jigar gajjar

jigar gajjar

Jun 11, 2012
12.1k
0

    Please refer to the following URL to know the differences between Class and Object,http://onlydifferencefaqs.blogspot.in/2012/07/oops-difference-faqs-2_11.html

    Umar Ali
    September 01, 2012
    0

    Class is a type which is logical and not physical. Object is the physical form a class type where memory allocation is done. In a simple terms it is a blue print or structure of the object and object is the actual representation of the type.

    Akkiraju Ivaturi
    August 05, 2012
    0

    Class contains data types and member functions.Object is reusable , we access class data through object

    LOKESH CHENNAMSETTI
    June 30, 2012
    0

    Class is user defined data type it contain data member and funciton. object is real time entity .

    ranveer singh
    June 19, 2012
    0

    Class is a template(type) or blue print its state how objects should be and behave. Object is defined as a software construct which binds data and logic or methods(functions)together. Class is a collection of data members and methods. Object is an instance of a class. class is only declaration.While object is actual creation of memory space for that declaration. ex:Employee is a class and ram is aobject of this class.

    Farukh Mujawar
    June 16, 2012
    0