What is the difference between Java Bean and Java Class.?
Answer Posted / shadow
Basically a Bean is a java class but it has getter and
setter method and it does not have any logic in it, it is
used for holding data.
On the other hand the Java class can have what a java bean
has and also has some logic inside it ....!
$HADOW
| Is This Answer Correct ? | 11 Yes | 3 No |
Post New Answer View All Answers
How many java versions are there?
Which method returns the length of a string?
Explain java coding standards for variables ?
What is ctrl m character?
Why do we need wrapper class?
Can we create more than one object singleton class?
What about instanceof operator in java?
What are the types of methods in java?
What is a treeset in java?
How to avoid memory leak in java?
How do I compare two strings in word in java?
You can create a string object as string str = “abc”; why cant a button object be created as button bt = “abc”;? Explain
Is class forname reflection?
What are 5 boolean operators?
When should I use singleton?