-4

Actually what is the major difference between Bean and Java Normal Class and what time we will be using Bean into the Project rather than Normal Class Please help me out

santhosh
  • 484
  • 3
  • 10
  • I Know those Difference already referred but my question when we will be using Bean rather than Java Class please check the Question Properly before Down voting – santhosh Sep 29 '14 at 12:25

1 Answers1

0

A Bean is a data structure. For example you may have a person:

public class Person
{
   private String name;
   private String address;
   private int age;
}

It is a structure for storing information.

dunni
  • 43,386
  • 10
  • 104
  • 99
brso05
  • 13,142
  • 2
  • 21
  • 40