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 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
Get step-by-step solutions from verified subject matter experts
