C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
.NET
ADO.NET
Android
ASP.NET
C#
Databases & DBA
Design Patterns & Practices
iOS
Java
OOP/OOD
SharePoint
Software Testing
Web Development
WPF
View All
5
Reply
what is difference between class and object
jigar gajjar
13y
12.1k
0
Reply
Delete Row
Delete Column
Insert Link
×
Insert
Cancel
Embed YouTube Video
×
Width (%)
Height (%)
Insert
Cancel
Table Options
×
Rows
Columns
First row as header
Create Table
Insert Image
×
Selected file:
Alignment
Left
Center
Right
Select an image from your device to upload
Upload to Server
Cancel
Submit
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
13y
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
13y
0
Class contains data types and member functions.Object is reusable , we access class data through object
LOKESH CHENNAMSETTI
13y
0
Class is user defined data type it contain data member and funciton. object is real time entity .
ranveer singh
13y
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
13y
0
Message