Creating a Java Point Class with Overloaded Constructors
Overloading Constructors with Different Data Types
Write a Java program to create a class called Point with instance variables x and y. Implement overloaded constructors:
- One constructor takes int parameters.
- Another constructor takes double parameters.
- Print the values of the variables for each constructor.
Sample Solution:
Java Code:
Point.java
Output:
Point (x, y): (4, 5) Point (x, y): (4, 5)
Explanation:
- Define the Point class:
- The Point class is defined with the keyword class.
- Private instance variables:
- The Point class has two private instance variables: x and y, both of type int.
- Constructor that takes int parameters:
- A constructor Point(int x, int y) is defined.
- Inside this constructor, the instance variables x and y are initialized with the provided integer parameters.
- Constructor that takes double parameters:
- Another constructor Point(double x, double y) is defined.
- Inside this constructor, the instance variables x and y are initialized with the provided double parameters, cast to int.
- Method to print the values of x and y:
- The printPoint method is defined to print the values of the instance variables x and y.
- Main method:
- The main method is defined to test the Point class.
- Using int constructor: A Point object (point1) is created using the constructor that takes int parameters. The values of point1 are printed using the printPoint method.
- Using double constructor: A Point object (point2) is created using the constructor that takes double parameters. The values of point2 are printed using the printPoint method.
Note on Constructors:
In the above exercise, the constructors for the Point class work by:
- Overloaded Constructors: Providing multiple constructors allows the class to be instantiated with different parameter types (int and double), offering flexibility in object creation.
- Data Initialization: Each constructor initializes the instance variables x and y according to the provided parameters, demonstrating the concept of constructor overloading in Java. This ensures that the Point class can handle different types of input while maintaining consistent initialization logic.
For more Practice: Solve these Related Problems:
- Write a Java program where the "Point" class includes a method to calculate the distance between two points.
- Write a Java program where the "Point" class implements a method to determine if two points are equal.
- Write a Java program where the "Point" class supports a method to move the point by a given offset.
- Write a Java program where the "Point" class includes a method to reflect the point over the X or Y axis.
Java Code Editor:
Improve this sample solution and post your code through Disqus.
Java Constructor Previous: Creating a Java Car Class with Parameterized Constructor and Default Values.
Java Constructor Next: Creating a Java Classroom Class with Array Initialization.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics