
Concept explainers
Explanation of Solution
Program:
//definition of "Line" class
public class Line
{
/*create the two objects for the "Point" class*/
private Point p1;
private Point p2;
// definition of constructor
public Line(Point p1, Point p2)
{
/*set the points to the "Point" class object*/
this.p1 = p1;
this.p2 = p2;
}
//definition of "getP1" method
public Point getP1()
{
// returns this line's first endpoint
return p1;
}
//definition of "getP2" method
public Point getP2()
{
// returns this line's second endpoint
return p2;
}
//definition of "toString" method
public String toString()
{
/*returns a string representation of this line*/
return "[" + p1 + ", " + p2 + "]";
}
//definition of "getSlope" method
public double getSlope()
{
//check two points are equal
if (p1...

Want to see the full answer?
Check out a sample textbook solution
Chapter 8 Solutions
Building Java Programs: A Back To Basics Approach (5th Edition)
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





