Java Practice It | Self-Check 8.21 constructorPoint | constructors, Point

preview_player
Показать описание
More practice its:

Problem:

Question:
Add a constructor to the Point class that accepts another Point as a parameter and initializes the new Point to have the same (x, y) values. Use the keyword this in your solution.

Recall that your code is being added to the following class:

public class Point {
int x;
int y;

// // your code goes here

}
Рекомендации по теме