Тема: TURBO C++ налагодження програми
Мені потрібна інформація про режим налагодження програми (на нього ще кажуть зневадження) в TURBO C++ ніяк не можу найти щось на цю тему в інтернеті.
Ви не увійшли. Будь ласка, увійдіть або зареєструйтесь.
Ласкаво просимо вас на україномовний форум з програмування, веб-дизайну, SEO та всього пов'язаного з інтернетом та комп'ютерами.
Будемо вдячні, якщо ви поділитись посиланням на Replace.org.ua на інших ресурсах.
Для того щоб створювати теми та надсилати повідомлення вам потрібно Зареєструватись.
Український форум програмістів → C++ → TURBO C++ налагодження програми
Сторінки 1
Для відправлення відповіді ви повинні увійти або зареєструватися
Мені потрібна інформація про режим налагодження програми (на нього ще кажуть зневадження) в TURBO C++ ніяк не можу найти щось на цю тему в інтернеті.
А що там знаходити? Там всього 4 гарячі клавіші(STEP, RUN, STEP INTO...) й для гурманів зміст змінних, втім я додаю код для їхнього відображення безпосередньо в код програми - препроцесор вам у руки.
Мені потрібно поставити мітку звідки починати налагодження програми, як це зробить ?
Встановіть точку зупину - BreakPoint
http://phoenix.goucher.edu/~kelliher/cs … gging.html
Setting and Using Breakpoints
If you suspect that there is a bug within a statement which is the 1,000th program statement executed, it's not terribly convenient to single-step to it. Instead, you would like to run the program until you get ``near'' the suspect statement or subroutine and then single-step the program. You would like to ``break'' (suspend) program execution at a particular point within the program --- a breakpoint. From that point, you can use Run|Step over or Run|Trace into.
Breakpoints are set by moving the cursor to an executable statement where you would like a break to occur and choosing Debug|Toggle breakpoint. This line is then highlighted. Repeat this process until you have all the breakpoints which you want. Choosing Run|Run causes the program to execute until the first breakpoint is encountered. Choosing Run|Run again will run the program until the next breakpoint (possibly the same one as before) occurs. Choosing Debug|Toggle breakpoint on a line which has a breakpoint already set removes the breakpoint.
Debug|Breakpoints contains several advanced breakpoint options. Among these are editing breakpoints, setting qualifier conditions for breakpoints, and setting a skip count for a breakpoint. Refer to the on-line documentation for details.
koala , 0xDADA11C7 Дякую тепер я розібрався з налагодження програми
Сторінки 1
Для відправлення відповіді ви повинні увійти або зареєструватися