Παράδειγμα:
Αρχείο Point.java
import gr.aueb.dds.BIO;
class Point {
private int x, y;
public void setpos(int sx, int sy) {
x = sx;
y = sy;
}
public void display() {
BIO.print("(x=" + x);
BIO.println(", y=" + y + ")");
}
}
Αρχείο TestPoint.java
import gr.aueb.dds.BIO;
class TestPoint {
public static void main(String args[])
{
Point a;
a = new Point();
a.setpos(2, 3);
a.display();
}
}