• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Devaka Cooray
  • Tim Cooke
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
Saloon Keepers:
  • Piet Souris
Bartenders:

object vs java object

 
Ranch Hand
Posts: 401
Spring
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,


may i know what is the difference between Object and java object, can not java beans be java objects? and what is the pojo in that case.

thanks
 
Ranch Hand
Posts: 1374
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

may i know what is the difference between Object and java object..


What is the point of differentiating Object and Java Object?

can not java beans be java objects? and what is the pojo in that case.


In order to get the answer tell us What is Java Bean? How do you compare it?
 
Vikas Kapoor
Ranch Hand
Posts: 1374
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can refer Java Bean.First paragraph itself should clear your all confusion.
 
Sheriff
Posts: 67762
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Object, class from which all other java objects are subclassed
Java object, general name for any Java object
JavaBean, a Java object that follows a prescribed pattern that makes it easy to create and instrospect
POJO, plain old Java object (to differentiate it from specialized Java objects such as EJB's)
 
reply
    Bookmark Topic Watch Topic
  • New Topic