17 lines
264 B
Java
17 lines
264 B
Java
|
|
package com.baeldung.javasisst;
|
||
|
|
|
||
|
|
public class Point {
|
||
|
|
public int x = 0;
|
||
|
|
public int y = 0;
|
||
|
|
|
||
|
|
public Point(int x, int y) {
|
||
|
|
this.x = x;
|
||
|
|
this.y = y;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void move(int x, int y) {
|
||
|
|
this.x = x;
|
||
|
|
this.y = y;
|
||
|
|
}
|
||
|
|
}
|