Skip to main content

Posts

Showing posts from January, 2024

Java Program to count number of employees working in a company (Completed With Garbage Collection)

    // Java Program to count number of employees working in a company (Completed With Garbage Collection)     class Employee {         private String name ;         private int age ;         private int ID ;         private static int nextId = 1 ;                         public Employee ( String name , int age ) {             this . name = name;             this . age = age;             this . ID = nextId ++ ;         }                 public void show ()         {             System . out . println ( " \n ID=" + ID +   " \n Name=" + name + " \n Age=" + age);         }   ...