Contenido del Curso
Java Extended
Java Extended
Challenge: Parrot Information Display
Tarea
Swipe to show code editor
Your task is to write a toString()
method that will display all the information about the parrot.
- In the
toString()
method, use the return keyword to specify the output of the method. - Start by creating a string, either using concatenation or string formatting, beginning with something like
Parrot{
. - Add each field to the string, using
+
for concatenation, and include both the field name and its value (e.g.,"name='" + name + "'"
). - Separate each field with a comma and a space for better readability.
- End the string with a closing brace
}
to properly represent the object. - Finally, return the formatted string from the
toString()
method.
Solución
solution
Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
¿Todo estuvo claro?
¡Gracias por tus comentarios!
Sección 4. Capítulo 9
Challenge: Parrot Information Display
Tarea
Swipe to show code editor
Your task is to write a toString()
method that will display all the information about the parrot.
- In the
toString()
method, use the return keyword to specify the output of the method. - Start by creating a string, either using concatenation or string formatting, beginning with something like
Parrot{
. - Add each field to the string, using
+
for concatenation, and include both the field name and its value (e.g.,"name='" + name + "'"
). - Separate each field with a comma and a space for better readability.
- End the string with a closing brace
}
to properly represent the object. - Finally, return the formatted string from the
toString()
method.
Solución
solution
Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
¿Todo estuvo claro?
¡Gracias por tus comentarios!
Sección 4. Capítulo 9
Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones