Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Create a new class Cell and do a unit test in bluej. The class has the following: 1. Val: a private variable - Integer 2.
Create a new class Cell and do a unit test in bluej. The class has the following:
1. Val: a private variable - Integer
2. next: a private variable - Cell
3. Append( Integer x ): checks to see if next is null. If it is, create a new Cell and assign it to next, and set the value of val to x. Otherwise call append(x) on next. 4. toString(): returns a String constructed by pre-pending val to the String returned by applying toString() to next (if next is not null)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started