Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Debuging

Former Member
0 Likes
379

Hi,

I want know the Diffrence between the break point and watch point

please give the concept.

3 REPLIES 3
Read only

Former Member
0 Likes
361

hi,

break-point : it stops where you put a break-point you have to manually add a break-point.

watch-point: during debugging you specify dynamically the place where you want to stop.

For example:

If you want to stop when say i value becomes 10. then you give a watch point.

hope it clears your doubt

regards,

Navneeth.K

Read only

Former Member
0 Likes
361

Hi,

Both are used for debugging.

Breakpoint : Wherever a breakpoint is set, the processing or debugging stops there and then u can proceed step by step.

Watchpoint : Watchpoint is created to see if a particular value has been achieved or not.e.g. If i put a watchpoint for A = 10. Then the processing will stop as soon as variable A reaches value 10.

Regards,

Himanshu

Read only

Former Member
0 Likes
361

Hi Raghava,

Break-point means form that point debugging starts,whereas watch point can b set from specific record also, say from 10 iteration I want to see debugging then its thru watchpoint.