Зміст курсу
Основи Java
Основи Java
Коментарі в коді
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 /* */
.
Приховування коду від компілятора
Ти можеш приховати код від компілятора, закоментувавши його.
Коментарі в коді - це фрагменти коду, які компілятор не буде обробляти. Ти можеш коментувати рядки коду за допомогою символів //
або закоментувати певний фрагмент тексту чи коду за допомогою /* */
.
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"); } }
Ти міг бачити приклад коментування у попередній главі, де замість коду, який ти мав написати, був закоментований фрагмент.
Ось ще один приклад використання коментування:
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"); } }
Тут буде показано лише перше та друге повідомлення, оскільки другий фрагмент закоментовано, і компілятор його не бачить.
Розглянемо приклад коментування багаторядкового коду:
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!
Рішення
solution
Дякуємо за ваш відгук!
Коментарі в коді
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 /* */
.
Приховування коду від компілятора
Ти можеш приховати код від компілятора, закоментувавши його.
Коментарі в коді - це фрагменти коду, які компілятор не буде обробляти. Ти можеш коментувати рядки коду за допомогою символів //
або закоментувати певний фрагмент тексту чи коду за допомогою /* */
.
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"); } }
Ти міг бачити приклад коментування у попередній главі, де замість коду, який ти мав написати, був закоментований фрагмент.
Ось ще один приклад використання коментування:
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"); } }
Тут буде показано лише перше та друге повідомлення, оскільки другий фрагмент закоментовано, і компілятор його не бачить.
Розглянемо приклад коментування багаторядкового коду:
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!
Рішення
solution
Дякуємо за ваш відгук!