Can anyone give an example of a method accessing another method? Sorry if this may sound stupid, but I'm a Java newbie...
Code: public void stuff() { double t = add(42.5,37); } public double add(double x, double y) { return x + y; } any more brain busters?
public void stuff() { double t = add(42.5,37); } public double add(double x, double y) { return x + y; }
Forum Rules
Development Centers -- Android Development Center -- Cloud Development Project Center -- HTML5 Development Center -- Windows Mobile Development Center