Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
13 views
Implementation of Java Program To Demonstrate Aggregation and Composition
Uploaded by
harsita
AI-enhanced title
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download now
Download
Save Implementation of Java Program to Demonstrate Aggr... For Later
Download
Save
Save Implementation of Java Program to Demonstrate Aggr... For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
13 views
Implementation of Java Program To Demonstrate Aggregation and Composition
Uploaded by
harsita
AI-enhanced title
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download now
Download
Save Implementation of Java Program to Demonstrate Aggr... For Later
Carousel Previous
Carousel Next
Save
Save Implementation of Java Program to Demonstrate Aggr... For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
You are on page 1
/ 4
Search
Fullscreen
IMPLEMENTATION OF JAVA PROGRAM TO DEMONSTRATE
AGGREGATION AND COMPOSITION
PROGRAM CODE:
class Salary {
double m_salary;
double other;
Salary(double m, double o) {
this.m_salary = m;
this.other = o;
}
Salary(double m) {
this(m, 0);
}
double totalSalary() {
return m_salary + other;
}
}
class Wages {
double home_wages;
double repair_charges;
double medicinal_wages;
Wages(double wages, double charges, double medicine) {
this.home_wages = wages;
this.repair_charges = charges;
this.medicinal_wages = medicine;
}
Wages(double wages) {
this(wages, 0, 0);
}
double totalWages() {
return home_wages + repair_charges + medicinal_wages;
}
}
class Savings {
double tsalary;
double twages;
Savings(double sala, double wage) {
this.tsalary = sala;
this.twages = wage;
}
Savings(double sala) {
this(sala, 0);
}
double savingsEarned() {
return tsalary - twages;
}
}
class Worker {
private Salary salary;
private Wages wages;
Worker(Salary salary, Wages wages) {
this.salary = salary;
this.wages = wages;
}
double totalIncome() {
return salary.totalSalary() + wages.totalWages();
}
}
class Finance {
private Worker worker;
private Savings savings;
Finance(Worker worker, double expenses) {
this.worker = worker;
this.savings =new Savings(worker.totalIncome(), expenses);
}
void displayFinancialSummary() {
double totalIncome = worker.totalIncome();
double totalSavings = savings.savingsEarned();
System.out.println("Total Income: " + totalIncome);
System.out.println("Total Savings: " + totalSavings);
}
}
public class Exp4 {
public static void main(String[] args) {
Salary sal = new Salary(32000, 5000);
Wages wag = new Wages(20000, 3000, 5000);
Salary sal2 = new Salary(35000);
Wages wag2 = new Wages(15000);
Worker worker1 = new Worker(sal, wag);
Worker worker2 = new Worker(sal2, wag2);
Finance finance1 = new Finance(worker1, 33000);
Finance finance2 = new Finance(worker2, 11370);
System.out.println("Financial Summary for Worker 1:");
finance1.displayFinancialSummary();
System.out.println("Financial Summary for Worker 2:");
finance2.displayFinancialSummary();
}}
OUTPUT:
You might also like
ACC 225 Course Syllabus
PDF
No ratings yet
ACC 225 Course Syllabus
10 pages
Implementation of Java Program To Demonstrate Method Overloading and Constructor Overloading
PDF
No ratings yet
Implementation of Java Program To Demonstrate Method Overloading and Constructor Overloading
8 pages
Implementation of Java Program To Pass Arguments To A Method and Return Value
PDF
No ratings yet
Implementation of Java Program To Pass Arguments To A Method and Return Value
8 pages
Implementation of Java Program To Demonstrate File Handling and Object Serialization
PDF
No ratings yet
Implementation of Java Program To Demonstrate File Handling and Object Serialization
8 pages
Implementation of Java Program To Demonstrate Exception Handling
PDF
No ratings yet
Implementation of Java Program To Demonstrate Exception Handling
6 pages
Koustubh Javapraticalassignment1
PDF
No ratings yet
Koustubh Javapraticalassignment1
14 pages
Prova Av2
PDF
No ratings yet
Prova Av2
11 pages
PGM 3
PDF
No ratings yet
PGM 3
1 page
Assignment# 2
PDF
No ratings yet
Assignment# 2
5 pages
Rules/naming Convention's We Need To Follow While Writing The Program
PDF
No ratings yet
Rules/naming Convention's We Need To Follow While Writing The Program
4 pages
Person
PDF
No ratings yet
Person
3 pages
EXP (4)-2
PDF
No ratings yet
EXP (4)-2
9 pages
Personal Finance Tracker
PDF
No ratings yet
Personal Finance Tracker
5 pages
Assignment - 3
PDF
No ratings yet
Assignment - 3
5 pages
OOP_Answer-Key
PDF
No ratings yet
OOP_Answer-Key
15 pages
Java
PDF
No ratings yet
Java
5 pages
Lab Polymorphism
PDF
No ratings yet
Lab Polymorphism
6 pages
Oop 3 Fa20-Be-012
PDF
No ratings yet
Oop 3 Fa20-Be-012
19 pages
Employee Oop Example
PDF
No ratings yet
Employee Oop Example
5 pages
Apex Codes-Day 1 & 2
PDF
No ratings yet
Apex Codes-Day 1 & 2
11 pages
Java 3 & 4
PDF
0% (1)
Java 3 & 4
50 pages
Homework #1: Please Refer To The Code in The Appendix (Pages 2 - 6) To Answer The Following Questions
PDF
No ratings yet
Homework #1: Please Refer To The Code in The Appendix (Pages 2 - 6) To Answer The Following Questions
5 pages
programmed assessment
PDF
No ratings yet
programmed assessment
6 pages
program on this keyword
PDF
No ratings yet
program on this keyword
2 pages
PP 2 Brian Sankey
PDF
No ratings yet
PP 2 Brian Sankey
4 pages
Java Project Report On Employee Management System
PDF
100% (1)
Java Project Report On Employee Management System
16 pages
Solution Lab Mini Project Java
PDF
No ratings yet
Solution Lab Mini Project Java
2 pages
Java Output
PDF
No ratings yet
Java Output
8 pages
public class Exercise14
PDF
No ratings yet
public class Exercise14
5 pages
Renzie
PDF
No ratings yet
Renzie
2 pages
Neelu
PDF
No ratings yet
Neelu
14 pages
Class Employee
PDF
No ratings yet
Class Employee
2 pages
Payroll System Final
PDF
No ratings yet
Payroll System Final
7 pages
Midterm Exam Set Two II
PDF
No ratings yet
Midterm Exam Set Two II
2 pages
ASS3
PDF
No ratings yet
ASS3
11 pages
CODER
PDF
No ratings yet
CODER
14 pages
Computer Project Class 12th
PDF
No ratings yet
Computer Project Class 12th
91 pages
SalaryComponent
PDF
No ratings yet
SalaryComponent
2 pages
C#Lab5 7
PDF
No ratings yet
C#Lab5 7
8 pages
Java pgm 10-18
PDF
No ratings yet
Java pgm 10-18
24 pages
Assignment 01
PDF
No ratings yet
Assignment 01
7 pages
Chapter-Seven: Object-Oriented Implementation
PDF
No ratings yet
Chapter-Seven: Object-Oriented Implementation
23 pages
Question # 1: Assignment # 1 (OOP C#)
PDF
No ratings yet
Question # 1: Assignment # 1 (OOP C#)
16 pages
Lab 7
PDF
No ratings yet
Lab 7
29 pages
Assignments Pooja Gaikwad
PDF
No ratings yet
Assignments Pooja Gaikwad
23 pages
PF lab 9
PDF
No ratings yet
PF lab 9
5 pages
Lucrarea de Laborator Nr. 3: Raport La
PDF
No ratings yet
Lucrarea de Laborator Nr. 3: Raport La
12 pages
2.2 Employee
PDF
No ratings yet
2.2 Employee
1 page
المستند
PDF
No ratings yet
المستند
3 pages
Esaimen Ooop
PDF
No ratings yet
Esaimen Ooop
9 pages
Oop Assignment 01: Name: Ghazanfar Qarshi ROLL NO: 2020-BSCS-019 Sec: A
PDF
No ratings yet
Oop Assignment 01: Name: Ghazanfar Qarshi ROLL NO: 2020-BSCS-019 Sec: A
9 pages
Java Program Employee - Management Program
PDF
No ratings yet
Java Program Employee - Management Program
2 pages
Untitled document-1
PDF
No ratings yet
Untitled document-1
4 pages
Employees: Employee
PDF
No ratings yet
Employees: Employee
6 pages
Import Class Public Static Void New Double Int While: "Enter Salary: "
PDF
No ratings yet
Import Class Public Static Void New Double Int While: "Enter Salary: "
2 pages
Code For Employee Class in Java
PDF
No ratings yet
Code For Employee Class in Java
2 pages
11 Task Performance in Integrative Programming
PDF
No ratings yet
11 Task Performance in Integrative Programming
10 pages
ass3prac2
PDF
No ratings yet
ass3prac2
4 pages
JAVA ASSIGNMENT-3
PDF
No ratings yet
JAVA ASSIGNMENT-3
13 pages
Gsis Salary Loan
PDF
No ratings yet
Gsis Salary Loan
2 pages
Software Design Simplified
From Everand
Software Design Simplified
Liviu Catalin Dorobantu
No ratings yet
De Thi Tieng Anh Ioe Cap Huyen Lop 3 20112012 2562
PDF
No ratings yet
De Thi Tieng Anh Ioe Cap Huyen Lop 3 20112012 2562
8 pages
Lecture 2 - Fundamental Concepts and Terms of Res
PDF
No ratings yet
Lecture 2 - Fundamental Concepts and Terms of Res
9 pages
The Bible New Testament PDF
PDF
No ratings yet
The Bible New Testament PDF
35 pages
Crochet Rocker Horse Amigurumi Free PDF Pattern
PDF
No ratings yet
Crochet Rocker Horse Amigurumi Free PDF Pattern
6 pages
MODULE 2.2 - Hydrostatic Force On Surfaces
PDF
No ratings yet
MODULE 2.2 - Hydrostatic Force On Surfaces
10 pages
Plaintiff-Appellee Defendants-Appellants Antonio Z. Oanis Maximo L. Valenzuela Acting Solicitor-General Ibañez Assistant Attorney Torres
PDF
No ratings yet
Plaintiff-Appellee Defendants-Appellants Antonio Z. Oanis Maximo L. Valenzuela Acting Solicitor-General Ibañez Assistant Attorney Torres
13 pages
Rule 92 Digest
PDF
No ratings yet
Rule 92 Digest
2 pages
Art of Recording With Video Camera
PDF
No ratings yet
Art of Recording With Video Camera
6 pages
Unit1 Notes
PDF
No ratings yet
Unit1 Notes
4 pages
The Star News December 24, 2015
PDF
No ratings yet
The Star News December 24, 2015
55 pages
TOFUGU - Japanese Particles in Action
PDF
No ratings yet
TOFUGU - Japanese Particles in Action
42 pages
Introduction To Vibration Analysis
PDF
100% (1)
Introduction To Vibration Analysis
69 pages
Intelligent Platform Management Interface Implementer's Guide Draft-Version 0.7
PDF
100% (1)
Intelligent Platform Management Interface Implementer's Guide Draft-Version 0.7
94 pages
Assignment 1
PDF
No ratings yet
Assignment 1
6 pages
Architecture Naab Accredited Universities List
PDF
No ratings yet
Architecture Naab Accredited Universities List
5 pages
2223 2 Sehh2232
PDF
No ratings yet
2223 2 Sehh2232
5 pages
Minor Research Project-Format
PDF
No ratings yet
Minor Research Project-Format
52 pages
G.R. No. L-32066. August 06, 1979 (Case Brief - Digest)
PDF
No ratings yet
G.R. No. L-32066. August 06, 1979 (Case Brief - Digest)
2 pages
Vlsi Design: Lecture Notes
PDF
No ratings yet
Vlsi Design: Lecture Notes
163 pages
What Is Ubs Slide Remake
PDF
No ratings yet
What Is Ubs Slide Remake
17 pages
Final Amazon - The Smart Hustler's Handbook - Comp
PDF
No ratings yet
Final Amazon - The Smart Hustler's Handbook - Comp
194 pages
1a0f11ce-5967-4eb1-b82e-769a18e25e42
PDF
No ratings yet
1a0f11ce-5967-4eb1-b82e-769a18e25e42
1 page
FM Lab Manual
PDF
No ratings yet
FM Lab Manual
70 pages
Eriks Pte. Ltd. v. Court of Appeals, G.R. No. 118843, 06 February 1997, (267 SCRA 567)
PDF
No ratings yet
Eriks Pte. Ltd. v. Court of Appeals, G.R. No. 118843, 06 February 1997, (267 SCRA 567)
3 pages
Gekko Systems. Online Spares - User Guide.: Onlinespares-Userguide-090914.Doc 1 of 21
PDF
No ratings yet
Gekko Systems. Online Spares - User Guide.: Onlinespares-Userguide-090914.Doc 1 of 21
21 pages
Produce Organic Fertilizer Solid and Liquid PDF
PDF
100% (1)
Produce Organic Fertilizer Solid and Liquid PDF
55 pages
Assessment Form Student
PDF
No ratings yet
Assessment Form Student
2 pages
6 04assess
PDF
No ratings yet
6 04assess
9 pages
SHS Biology 1 LP
PDF
No ratings yet
SHS Biology 1 LP
4 pages
Related titles
Click to expand Related Titles
Carousel Previous
Carousel Next
ACC 225 Course Syllabus
PDF
ACC 225 Course Syllabus
Implementation of Java Program To Demonstrate Method Overloading and Constructor Overloading
PDF
Implementation of Java Program To Demonstrate Method Overloading and Constructor Overloading
Implementation of Java Program To Pass Arguments To A Method and Return Value
PDF
Implementation of Java Program To Pass Arguments To A Method and Return Value
Implementation of Java Program To Demonstrate File Handling and Object Serialization
PDF
Implementation of Java Program To Demonstrate File Handling and Object Serialization
Implementation of Java Program To Demonstrate Exception Handling
PDF
Implementation of Java Program To Demonstrate Exception Handling
Koustubh Javapraticalassignment1
PDF
Koustubh Javapraticalassignment1
Prova Av2
PDF
Prova Av2
PGM 3
PDF
PGM 3
Assignment# 2
PDF
Assignment# 2
Rules/naming Convention's We Need To Follow While Writing The Program
PDF
Rules/naming Convention's We Need To Follow While Writing The Program
Person
PDF
Person
EXP (4)-2
PDF
EXP (4)-2
Personal Finance Tracker
PDF
Personal Finance Tracker
Assignment - 3
PDF
Assignment - 3
OOP_Answer-Key
PDF
OOP_Answer-Key
Java
PDF
Java
Lab Polymorphism
PDF
Lab Polymorphism
Oop 3 Fa20-Be-012
PDF
Oop 3 Fa20-Be-012
Employee Oop Example
PDF
Employee Oop Example
Apex Codes-Day 1 & 2
PDF
Apex Codes-Day 1 & 2
Java 3 & 4
PDF
Java 3 & 4
Homework #1: Please Refer To The Code in The Appendix (Pages 2 - 6) To Answer The Following Questions
PDF
Homework #1: Please Refer To The Code in The Appendix (Pages 2 - 6) To Answer The Following Questions
programmed assessment
PDF
programmed assessment
program on this keyword
PDF
program on this keyword
PP 2 Brian Sankey
PDF
PP 2 Brian Sankey
Java Project Report On Employee Management System
PDF
Java Project Report On Employee Management System
Solution Lab Mini Project Java
PDF
Solution Lab Mini Project Java
Java Output
PDF
Java Output
public class Exercise14
PDF
public class Exercise14
Renzie
PDF
Renzie
Neelu
PDF
Neelu
Class Employee
PDF
Class Employee
Payroll System Final
PDF
Payroll System Final
Midterm Exam Set Two II
PDF
Midterm Exam Set Two II
ASS3
PDF
ASS3
CODER
PDF
CODER
Computer Project Class 12th
PDF
Computer Project Class 12th
SalaryComponent
PDF
SalaryComponent
C#Lab5 7
PDF
C#Lab5 7
Java pgm 10-18
PDF
Java pgm 10-18
Assignment 01
PDF
Assignment 01
Chapter-Seven: Object-Oriented Implementation
PDF
Chapter-Seven: Object-Oriented Implementation
Question # 1: Assignment # 1 (OOP C#)
PDF
Question # 1: Assignment # 1 (OOP C#)
Lab 7
PDF
Lab 7
Assignments Pooja Gaikwad
PDF
Assignments Pooja Gaikwad
PF lab 9
PDF
PF lab 9
Lucrarea de Laborator Nr. 3: Raport La
PDF
Lucrarea de Laborator Nr. 3: Raport La
2.2 Employee
PDF
2.2 Employee
المستند
PDF
المستند
Esaimen Ooop
PDF
Esaimen Ooop
Oop Assignment 01: Name: Ghazanfar Qarshi ROLL NO: 2020-BSCS-019 Sec: A
PDF
Oop Assignment 01: Name: Ghazanfar Qarshi ROLL NO: 2020-BSCS-019 Sec: A
Java Program Employee - Management Program
PDF
Java Program Employee - Management Program
Untitled document-1
PDF
Untitled document-1
Employees: Employee
PDF
Employees: Employee
Import Class Public Static Void New Double Int While: "Enter Salary: "
PDF
Import Class Public Static Void New Double Int While: "Enter Salary: "
Code For Employee Class in Java
PDF
Code For Employee Class in Java
11 Task Performance in Integrative Programming
PDF
11 Task Performance in Integrative Programming
ass3prac2
PDF
ass3prac2
JAVA ASSIGNMENT-3
PDF
JAVA ASSIGNMENT-3
Gsis Salary Loan
PDF
Gsis Salary Loan
Software Design Simplified
From Everand
Software Design Simplified
De Thi Tieng Anh Ioe Cap Huyen Lop 3 20112012 2562
PDF
De Thi Tieng Anh Ioe Cap Huyen Lop 3 20112012 2562
Lecture 2 - Fundamental Concepts and Terms of Res
PDF
Lecture 2 - Fundamental Concepts and Terms of Res
The Bible New Testament PDF
PDF
The Bible New Testament PDF
Crochet Rocker Horse Amigurumi Free PDF Pattern
PDF
Crochet Rocker Horse Amigurumi Free PDF Pattern
MODULE 2.2 - Hydrostatic Force On Surfaces
PDF
MODULE 2.2 - Hydrostatic Force On Surfaces
Plaintiff-Appellee Defendants-Appellants Antonio Z. Oanis Maximo L. Valenzuela Acting Solicitor-General Ibañez Assistant Attorney Torres
PDF
Plaintiff-Appellee Defendants-Appellants Antonio Z. Oanis Maximo L. Valenzuela Acting Solicitor-General Ibañez Assistant Attorney Torres
Rule 92 Digest
PDF
Rule 92 Digest
Art of Recording With Video Camera
PDF
Art of Recording With Video Camera
Unit1 Notes
PDF
Unit1 Notes
The Star News December 24, 2015
PDF
The Star News December 24, 2015
TOFUGU - Japanese Particles in Action
PDF
TOFUGU - Japanese Particles in Action
Introduction To Vibration Analysis
PDF
Introduction To Vibration Analysis
Intelligent Platform Management Interface Implementer's Guide Draft-Version 0.7
PDF
Intelligent Platform Management Interface Implementer's Guide Draft-Version 0.7
Assignment 1
PDF
Assignment 1
Architecture Naab Accredited Universities List
PDF
Architecture Naab Accredited Universities List
2223 2 Sehh2232
PDF
2223 2 Sehh2232
Minor Research Project-Format
PDF
Minor Research Project-Format
G.R. No. L-32066. August 06, 1979 (Case Brief - Digest)
PDF
G.R. No. L-32066. August 06, 1979 (Case Brief - Digest)
Vlsi Design: Lecture Notes
PDF
Vlsi Design: Lecture Notes
What Is Ubs Slide Remake
PDF
What Is Ubs Slide Remake
Final Amazon - The Smart Hustler's Handbook - Comp
PDF
Final Amazon - The Smart Hustler's Handbook - Comp
1a0f11ce-5967-4eb1-b82e-769a18e25e42
PDF
1a0f11ce-5967-4eb1-b82e-769a18e25e42
FM Lab Manual
PDF
FM Lab Manual
Eriks Pte. Ltd. v. Court of Appeals, G.R. No. 118843, 06 February 1997, (267 SCRA 567)
PDF
Eriks Pte. Ltd. v. Court of Appeals, G.R. No. 118843, 06 February 1997, (267 SCRA 567)
Gekko Systems. Online Spares - User Guide.: Onlinespares-Userguide-090914.Doc 1 of 21
PDF
Gekko Systems. Online Spares - User Guide.: Onlinespares-Userguide-090914.Doc 1 of 21
Produce Organic Fertilizer Solid and Liquid PDF
PDF
Produce Organic Fertilizer Solid and Liquid PDF
Assessment Form Student
PDF
Assessment Form Student
6 04assess
PDF
6 04assess
SHS Biology 1 LP
PDF
SHS Biology 1 LP