‎2007 Apr 27 4:34 AM
Hi,
I want know the Diffrence between the break point and watch point
please give the concept.
‎2007 Apr 27 4:38 AM
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
‎2007 Apr 27 4:38 AM
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
‎2007 Apr 27 4:38 AM
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.