Contenido del Curso
Principios Básicos de Java
Principios Básicos de Java
Comentarios
Hiding code in from the compiler
You can hide code from the compiler by commenting out the code.
Code comments are fragments that the compiler will not process.
You can comment out lines of code using the //
symbols or enclose a specific fragment of text or code using /* */
.
Ocultar Código al Compilador
Puedes ocultar código del compilador comentando el código.
Los comentarios de código son fragmentos que el compilador no procesará. Puedes comentar líneas de código usando los símbolos //
o encerrar un fragmento específico de texto o código usando /* */
.
You could see an example of commenting in the previous chapter, where there was a comment in place of the code you were supposed to write.
Here's another example of using commenting:
Main
package com.example; public class Main { public static void main(String[] args) { System.out.println("Message 1"); //System.out.println("Message 2"); System.out.println("Message 3"); } }
Pudiste ver un ejemplo de comentario en el capítulo anterior, donde había un comentario en lugar del código que se suponía que tenías que escribir.
Aquí tienes otro ejemplo del uso de comentarios:
Main
package com.example; public class Main { public static void main(String[] args) { System.out.println("Message 1"); //System.out.println("Message 2"); System.out.println("Message 3"); } }
Aquí sólo se mostrarán los mensajes primero y segundo porque el segundo fragmento está comentado y el compilador no lo ve.
Veamos el ejemplo del comentario de código multilínea:
Swipe to begin your solution
Now, let's examine a code fragment that contains an error. Your task is to identify the error and comment out the code fragment that contains it.
Note
Remember to enclose the text in double quotes!
Solución
solution
¡Gracias por tus comentarios!
Comentarios
Hiding code in from the compiler
You can hide code from the compiler by commenting out the code.
Code comments are fragments that the compiler will not process.
You can comment out lines of code using the //
symbols or enclose a specific fragment of text or code using /* */
.
Ocultar Código al Compilador
Puedes ocultar código del compilador comentando el código.
Los comentarios de código son fragmentos que el compilador no procesará. Puedes comentar líneas de código usando los símbolos //
o encerrar un fragmento específico de texto o código usando /* */
.
You could see an example of commenting in the previous chapter, where there was a comment in place of the code you were supposed to write.
Here's another example of using commenting:
Main
package com.example; public class Main { public static void main(String[] args) { System.out.println("Message 1"); //System.out.println("Message 2"); System.out.println("Message 3"); } }
Pudiste ver un ejemplo de comentario en el capítulo anterior, donde había un comentario en lugar del código que se suponía que tenías que escribir.
Aquí tienes otro ejemplo del uso de comentarios:
Main
package com.example; public class Main { public static void main(String[] args) { System.out.println("Message 1"); //System.out.println("Message 2"); System.out.println("Message 3"); } }
Aquí sólo se mostrarán los mensajes primero y segundo porque el segundo fragmento está comentado y el compilador no lo ve.
Veamos el ejemplo del comentario de código multilínea:
Swipe to begin your solution
Now, let's examine a code fragment that contains an error. Your task is to identify the error and comment out the code fragment that contains it.
Note
Remember to enclose the text in double quotes!
Solución
solution
¡Gracias por tus comentarios!