
We are searching data for your request:
Upon completion, a link will appear to access the found materials.
Parameters are the variables that are listed as part of a method declaration. Each parameter must have a unique name and a defined data type.
Parameter Example
Within a method to compute a change to a Circle object's position, the method changeCircle accepts three parameters: a name of a Circle object, an integer representing a change to the X-axis of the object and an integer representing a change to the Y axis of the object.
public void changeCircle(Circle c1, int chgX, int chgY) { c1.setX(circle.getX() + chgX); c1.setY(circle.getY() + chgY); }
When the method is called using example values (e.g., changeCircle(Circ1, 20, 25)), the program will move the Circ1 object up 20 units and right 25 units.
About Parameters
A parameter may be of any declared data type -- either primitives like integers, or reference objects including arrays. If a parameter may become an array of an indeterminant number of data points, create a vararg by following the parameter type with three periods (an ellipsis) and then specifying the parameter name.
I think mistakes are made. Let us try to discuss this. Write to me in PM, speak.
I don't understand something
I think I've already read about it somewhere
the incomparable message