In a package named "lecture10", implement the following. Lecture Question class Battery with A constructor that takes a variable named "charge" of type Int. • abstract class Electronic with • A constructor that takes no parameters. • A state variable named "battery" of type Battery. • A method named "use" that takes no parameters and returns Unit (this can be abstract). • A method named "replaceBattery" that takes a Battery as a parameter and returns a Battery. • This method swaps the input Battery with the Battery currently stored in this Electronic's state variable. • The returned Battery is the one that was in the state variable when the method is called. class Flashlight that extends Electronic. • A constructor that takes no parameters • When a new Flashlight is created, assign the inherited state variable named "battery" to a new Battery with 5 charge (ie. Batteries included). • Override the "use" method to reduce the charge of the battery in the state variable by 1 if its charge is 1 or greater. class BoomBox that extends Electronic. A constructor that takes a variable of type Battery and assigns it to the inhmerited state variable named "battery". Your BoomBox constructor parameter should have a different name than the state variable. • Override the "use" method to reduce the charge of the battery in the state variable by 3 if its charge is 3 or greater.
In a package named "lecture10", implement the following. Lecture Question class Battery with A constructor that takes a variable named "charge" of type Int. • abstract class Electronic with • A constructor that takes no parameters. • A state variable named "battery" of type Battery. • A method named "use" that takes no parameters and returns Unit (this can be abstract). • A method named "replaceBattery" that takes a Battery as a parameter and returns a Battery. • This method swaps the input Battery with the Battery currently stored in this Electronic's state variable. • The returned Battery is the one that was in the state variable when the method is called. class Flashlight that extends Electronic. • A constructor that takes no parameters • When a new Flashlight is created, assign the inherited state variable named "battery" to a new Battery with 5 charge (ie. Batteries included). • Override the "use" method to reduce the charge of the battery in the state variable by 1 if its charge is 1 or greater. class BoomBox that extends Electronic. A constructor that takes a variable of type Battery and assigns it to the inhmerited state variable named "battery". Your BoomBox constructor parameter should have a different name than the state variable. • Override the "use" method to reduce the charge of the battery in the state variable by 3 if its charge is 3 or greater.
Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
Related questions
Question
Lecture Question 10 continued:
Your Flashlight and BoomBox classes must inherit Electronic. This will be checked by storing them in variables of type Electronic.
val flashlight1: Electronic = new Flashlight()
val boomBox1: Electronic = new BoomBox(new Battery(10)
![In a package named "lecture10“, implement the following.
Lecture Question
class Battery with
• A constructor that takes a variable named "charge" of type Int.
• abstract class Electronic with
• A constructor that takes no parameters.
• A state variable named "battery" of type Battery.
A method named "use" that takes no parameters and returns Unit (this can be abstract).
• A method named "replaceBattery" that takes a Battery as a parameter and returns a Battery.
• This method swaps the input Battery with the Battery currently stored in this Electronic's state variable.
• The returned Battery is the one that was in the state variable when the method is called.
• class Flashlight that extends Electronic.
• A constructor that takes no parameters
When a new Flashlight is created, assign the inherited state variable named "battery" to a new Battery with 5 charge (ie.
Batteries included).
Override the "use" method to reduce the charge of the battery in the state variable by 1 if its charge is 1 or greater.
class BoomBox that extends Electronic.
• A constructor that takes a variable of type Battery and assigns it to the inhherited state variable named "battery“.
Your BoomBox constructor parameter should have a different name than the state variable.
Override the "use" method to reduce the charge of the battery in the state variable by 3 if its charge is 3 or greater.](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F7b311051-cdd6-4242-8c82-fc8493a4de18%2Fd0091471-8e5a-4317-82c7-aa36471988da%2Ffal2wad_processed.jpeg&w=3840&q=75)
Transcribed Image Text:In a package named "lecture10“, implement the following.
Lecture Question
class Battery with
• A constructor that takes a variable named "charge" of type Int.
• abstract class Electronic with
• A constructor that takes no parameters.
• A state variable named "battery" of type Battery.
A method named "use" that takes no parameters and returns Unit (this can be abstract).
• A method named "replaceBattery" that takes a Battery as a parameter and returns a Battery.
• This method swaps the input Battery with the Battery currently stored in this Electronic's state variable.
• The returned Battery is the one that was in the state variable when the method is called.
• class Flashlight that extends Electronic.
• A constructor that takes no parameters
When a new Flashlight is created, assign the inherited state variable named "battery" to a new Battery with 5 charge (ie.
Batteries included).
Override the "use" method to reduce the charge of the battery in the state variable by 1 if its charge is 1 or greater.
class BoomBox that extends Electronic.
• A constructor that takes a variable of type Battery and assigns it to the inhherited state variable named "battery“.
Your BoomBox constructor parameter should have a different name than the state variable.
Override the "use" method to reduce the charge of the battery in the state variable by 3 if its charge is 3 or greater.
![Lecture Question
In a package named "lecture11“, implement the following to expand the Flashlight/
BoomBox functionality from the previous lecture question. Full functionality from the
previous lecture question is required.
Classes Battery, Electronic, BoomBox, and Flashlight as defined in the previous lecture
question.
• An object named UseElectronics with
• a method named "useAll" that takes a List of Electronics as a parameter and returns Unit.
Calls the "use" method on all the Electronics in the input list.
[Notice that the specific method that is called depends on whether the Electronic is a BoomBox
or a Flashlight].
A method named "swapBatteries" that takes two Electronics as parameters and returns
%3D
Unit.
Exchanges the batteries between the two Electronics.
Testing: In a package named "tests" create a Scala class named "TestElectronics" as a test
suite that tests all the functionality listed above.](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F7b311051-cdd6-4242-8c82-fc8493a4de18%2Fd0091471-8e5a-4317-82c7-aa36471988da%2Fgm16n7_processed.png&w=3840&q=75)
Transcribed Image Text:Lecture Question
In a package named "lecture11“, implement the following to expand the Flashlight/
BoomBox functionality from the previous lecture question. Full functionality from the
previous lecture question is required.
Classes Battery, Electronic, BoomBox, and Flashlight as defined in the previous lecture
question.
• An object named UseElectronics with
• a method named "useAll" that takes a List of Electronics as a parameter and returns Unit.
Calls the "use" method on all the Electronics in the input list.
[Notice that the specific method that is called depends on whether the Electronic is a BoomBox
or a Flashlight].
A method named "swapBatteries" that takes two Electronics as parameters and returns
%3D
Unit.
Exchanges the batteries between the two Electronics.
Testing: In a package named "tests" create a Scala class named "TestElectronics" as a test
suite that tests all the functionality listed above.
Expert Solution
![](/static/compass_v2/shared-icons/check-mark.png)
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
Recommended textbooks for you
![Computer Networking: A Top-Down Approach (7th Edi…](https://www.bartleby.com/isbn_cover_images/9780133594140/9780133594140_smallCoverImage.gif)
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
![Computer Organization and Design MIPS Edition, Fi…](https://www.bartleby.com/isbn_cover_images/9780124077263/9780124077263_smallCoverImage.gif)
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
![Network+ Guide to Networks (MindTap Course List)](https://www.bartleby.com/isbn_cover_images/9781337569330/9781337569330_smallCoverImage.gif)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
![Computer Networking: A Top-Down Approach (7th Edi…](https://www.bartleby.com/isbn_cover_images/9780133594140/9780133594140_smallCoverImage.gif)
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
![Computer Organization and Design MIPS Edition, Fi…](https://www.bartleby.com/isbn_cover_images/9780124077263/9780124077263_smallCoverImage.gif)
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
![Network+ Guide to Networks (MindTap Course List)](https://www.bartleby.com/isbn_cover_images/9781337569330/9781337569330_smallCoverImage.gif)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
![Concepts of Database Management](https://www.bartleby.com/isbn_cover_images/9781337093422/9781337093422_smallCoverImage.gif)
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
![Prelude to Programming](https://www.bartleby.com/isbn_cover_images/9780133750423/9780133750423_smallCoverImage.jpg)
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
![Sc Business Data Communications and Networking, T…](https://www.bartleby.com/isbn_cover_images/9781119368830/9781119368830_smallCoverImage.gif)
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY