Question: 1. a. Write a class called Triangle that implements the Comparable interface. The class should contain 3 fields: vertexA (Point), vertexB (Point), vertexC (point). Write

 1. a. Write a class called Triangle that implements the Comparable
1.
a. Write a class called Triangle that implements the Comparable interface. The class should contain 3 fields: vertexA (Point), vertexB (Point), vertexC (point). Write the necessary constructors, accessors, mutators and other methods. The Point class is given below.
b. Write a client class that creates an ArrayList of 10 Triangle objects called list1.
Print the list.
Call Collections.sort(list1), to sort the elements according to the area of the triangle.
Print the sorted list.
public class Point {
private int x;
private int y;
public Point() {
this(0, 0);
}
public Point(int x, int y) {
this.x=x;
this.y=y;
}
public int getX() {
return x;
}
public int getY() {
return y;
}
public String toString() {
return "(" + x + ", " + y + ")";
}
}

1. a. Write a class called Triangle that implements the Comparable interface. The class should contain 3 fields: vertexA (Point), vertexB (Point), vertexC (point). Write the necessary constructors, accessors, mutators and other methods. The Point class is given below b. Write a client class that creates an ArrayList of 10 Triangle objects called listl Print the list. Call Collections.sort(listl), to sort the elements according to the area of the triangle. Print the sorted list. public class Point private int x private int y public PointO this(0, 0); public Point(int x, int y this.x-x; this.y-y; public int getXO i public int getYO public String toString0 return X return y return "x+" "+y+")

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!