Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Вивчайте Коментарі в коді | Початок Роботи
Основи Java
course content

Зміст курсу

Основи Java

Основи Java

1. Початок Роботи
2. Основні Типи та Операції
3. Цикли
4. Масиви
5. String

book
Коментарі в коді

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:

java

Main

copy
123456789
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"); } }

Ти міг бачити приклад коментування у попередній главі, де замість коду, який ти мав написати, був закоментований фрагмент.

Ось ще один приклад використання коментування:

java

Main

copy
123456789
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"); } }

Тут буде показано лише перше та друге повідомлення, оскільки другий фрагмент закоментовано, і компілятор його не бачить.

Розглянемо приклад коментування багаторядкового коду:

Завдання
test

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!

Рішення

java

solution

Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 1. Розділ 7
toggle bottom row

book
Коментарі в коді

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:

java

Main

copy
123456789
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"); } }

Ти міг бачити приклад коментування у попередній главі, де замість коду, який ти мав написати, був закоментований фрагмент.

Ось ще один приклад використання коментування:

java

Main

copy
123456789
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"); } }

Тут буде показано лише перше та друге повідомлення, оскільки другий фрагмент закоментовано, і компілятор його не бачить.

Розглянемо приклад коментування багаторядкового коду:

Завдання
test

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!

Рішення

java

solution

Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 1. Розділ 7
Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
We're sorry to hear that something went wrong. What happened?
some-alt