———————————————
class Try
{
public int x;
public double y;

public void set(int x, double y1)
{
this.x = x;
y = y1;
}
———————————————

this.x and y cannot be typed.

Submitted on 22 April 2005 at 16:26

Log in to post comments