What is the standard way to instantiate a Java Bean?


 
Thread Tools Search this Thread
Top Forums Programming What is the standard way to instantiate a Java Bean?
# 1  
Old 05-11-2011
What is the standard way to instantiate a Java Bean?

We can treat a Java Bean as a common Java object, and instantiate it by Java key word - new. But Java Bean is different from common Java object. So what is the standard way to instantiate a Java Bean?
# 2  
Old 05-11-2011
Quote:
But Java Bean is different from common Java object.
No, a Java Bean is just a standard Java object, but one that conforms to a certain specification so that it can be constructed and inspected programatically. See the "trail" on the Java tutorials website.
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question