Created
January 21, 2016 17:53
-
-
Save briansalvattore/75cdb240aa7194718fb7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*Método para obtener la cantidad de chips que tiene mi galleta | |
* Este método retornará un entero(int) | |
* Su nombre es getChips | |
* No tiene valores de entrada | |
* En su cuerpo retorna la variable chips | |
*/ | |
public int getChips(){ | |
return chips; | |
} | |
/*Método para cambiar la cantidad de chips que tiene mi galleta | |
* Este es un método que retorna un void, osea no tiene valor de retorno | |
* Su nombre es setChips | |
* Tiene un valor de entrada numeroChips | |
* En su cuerpo, reemplaza el valor de la variable chips por el valor de numeroChips | |
* Como es un método vacío, no es necesario porner la sentencia return | |
*/ | |
public void setChips(int numeroChips){ | |
chips = numeroChips; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment