Program to define a class 'employee' with data members as empid, name and salary. Accept data for 5 objects using Array of objects and print it.

This program demonstrates you the array of objects. Array of object is the collection of objects of the same class. The given syntax will define an array of reference therefore assign object to individual reference in the array to declare the array of object. The syntax to define array of object is:
<class-name>  <array-name> [size];

For example, the following statement will define an array of object having size 6 references to the class Box.
Box  b[6];

For creating an array of objects (allocating memory) you have to write down the following statements
for (int i=0; i<6; i++) {
 b[i]  = new  Box();
 // Assigning object to individual reference in the array.
}
PROGRAM
import java.util.Scanner;

public class Employee {

 int empid;
 String name;
 float salary;
 
 public void getInput() {
 
  Scanner in = new Scanner(System.in);
  System.out.print("Enter the empid :: ");
  empid = in.nextInt();
  System.out.print("Enter the name :: ");
  name = in.next();
  System.out.print("Enter the salary :: ");
  salary = in.nextFloat();
 }
 
 public void display() {
  
  System.out.println("Employee id = " + empid);
  System.out.println("Employee name = " + name);
  System.out.println("Employee salary = " + salary);
 }
 
 public static void main(String[] args) {
 
  Employee e[] = new Employee[5];
  
  for(int i=0; i<5; i++) {
   
   e[i] = new Employee();
   e[i].getInput();
  }
  
  System.out.println("**** Data Entered as below ****");
  
  for(int i=0; i<5; i++) {
   
   e[i].display();
  }
 }
}
OUTPUT
C:\>javac Employee.java
C:\>java Employee
Enter the empid :: 101
Enter the name :: Smith
Enter the salary :: 30250.0
Enter the empid :: 103
Enter the name :: Harsh
Enter the salary :: 23560.0
Enter the empid :: 105
Enter the name :: Subhash
Enter the salary :: 19823.0
Enter the empid :: 203
Enter the name :: Rohan
Enter the salary :: 25230.0
Enter the empid :: 201
Enter the name :: Girish
Enter the salary :: 32000.0
**** Data Entered as below ****
Employee id = 101
Employee name = Smith
Employee salary = 30250.0
Employee id = 103
Employee name = Harsh
Employee salary = 23560.0
Employee id = 105
Employee name = Subhash
Employee salary = 19823.0
Employee id = 203
Employee name = Rohan
Employee salary = 25230.0
Employee id = 201
Employee name = Girish
Employee salary = 32000.0

Comments

  1. The above program is easy to understand and it makes me much comfort to study soon

    ReplyDelete
    Replies
    1. Great Article android based projects

      Java Training in Chennai

      Project Center in Chennai

      Java Training in Chennai

      projects for cse

      The Angular Training covers a wide range of topics including Components, Angular Directives, Angular Services, Pipes, security fundamentals, Routing, and Angular programmability. The new Angular TRaining will lay the foundation you need to specialise in Single Page Application developer. Angular Training

      Delete
  2. Picture change or content shading change on mouseover, making mouse trails are on the whole conceivable through Javascript. let's code the right way

    ReplyDelete
  3. I want this program based on id number we have to print all the details of employee sir

    ReplyDelete
  4. This comment has been removed by a blog administrator.

    ReplyDelete
  5. Giving lapel pins or corporate logo adornments where the employees as of now have them would not make a significant part of the sensation or inspiration.Target view my schedule

    ReplyDelete
  6. I am hoping the same best effort from you in the future as well. In fact your creative writing skills has inspired me. artists contracts

    ReplyDelete
  7. but this program is not compiling in eclipse compiler and also some of the online compilers

    ReplyDelete
  8. The best way to learn is to learn by doing. Go for a full program that does a task you wanted to do on a computer in the past, work on it, and when you are finished you will have learned a lot and you will have a useful (or at least entertaining) program which is far better than some toy program demonstrating lists.best laptop for programming

    ReplyDelete
  9. Superb way of explaining, and great webdesign agencies blog to get wonderful information.

    ReplyDelete
  10. Really impressive post. I read it whole and going to share it with my social circules. I enjoyed your article and planning to rewrite it on my own blog. 法拉盛补习

    ReplyDelete
  11. Another tip is to hold up a week or so until after another variant is discharged before applying the move up to your site. error establishing a database connection

    ReplyDelete
  12. Personally, I have found that to remain probably the most fascinating topics when it draws a parallel to. You may find two to three new levels inside L . a . Weight loss and any one someone is incredibly important. Initial stage may be real melting away rrn the body. lose weight data entry bookkeeper

    ReplyDelete
  13. In the event that you know a programming language, at that point there is frequently a reasonable possibility that you can compose a program to achieve that task yourself. excel vba training london

    ReplyDelete
  14. I have read all the comments and suggestions posted by the visitors for this article are very fine,We will wait for your next article so only.Thanks! for more info

    ReplyDelete
  15. Very informative post! There is a lot of information here that can help any business get started with a successful social networking campaign. recruitment software

    ReplyDelete
  16. This is an excellent post I seen thanks to share it. It is really what I wanted to see hope in future you will continue for sharing such a excellent post. inventory data entry

    ReplyDelete
  17. Thanks for a wonderful share. Your article has proved your hard work and experience you have got in this field. Brilliant .i love it reading. satta king

    ReplyDelete
  18. It is regularly contrasted with speculative chemistry. Everybody recognizes what SEO specialists do, yet not many skill they do it. SEO lead generation

    ReplyDelete
  19. Finally I’m glad to check this blog because it’s a nice and informative blog.
    Selenium Training in Chennai
    Selenium Course in Bangalore
    Selenium Training Online

    ReplyDelete
  20. Such a useful blog with required information. Thanks for sharing this amazing blog.
    AWS Certification in Chennai
    DevOps Course in Chennai

    ReplyDelete
  21. I read this blog,Thanks for sharing this information.

    Java Classes in Chennai

    ReplyDelete

Post a Comment

Popular posts from this blog

Program to input age from user and throw user-defined exception if entered age is negative

Define a class Student with four data members such as name, roll no.,sub1, and sub2. Define appropriate methods to initialize and display the values of data members. Also calculate total marks and percentage scored by student.