HI All,
I am beginner in java and just started to work in this technologies. Can any one help me about below query.
"How to debug java code and move from one page to another page in debugging mode?"
Thanks in advance
Ambrish
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
HI All,
I am beginner in java and just started to work in this technologies. Can any one help me about below query.
"How to debug java code and move from one page to another page in debugging mode?"
Thanks in advance
Ambrish
I am not sure what you mean - do you mean pages as in the total
amount of source files within the project/solution or the lines of code
in each source file?
In general the debugger tool will execute the code line by line. You
can use it to keep track of variable values and how they change
throughout a program's execution cycle. You can also set
breakpoints to terminate the program at any set point, and step into
the code, continue the debug cycle, then step out of it.
Wishes Ada xx
If to Err is human - then programmers are most human of us all.
"The Analytical Engine offers a new, a vast, and a powerful language . . .
for the purposes of mankind."
— Augusta Ada Byron, Lady Lovelace (1851)
Welcome to the Forum! Please read this topic to learn how to post code correctly and other useful tips for newcomers.
What debugger? And is this your question or someone else's?
Thanks for reply
I want to put the break point in my code and check the value and change the value any point of time. And also move from one class method to another class method
I would suggest looking up the various documentation available
for your debugger. Break points can usually be set by clicking
where the line numbers are, or by right clicking and there should be
an option that sets a break point.
You can also modify various other features of the debugger to
whether or not to show certain symbols, variables and types.
Most of this will be explained in detail in the user documentation.
Wishes Ada xx
If to Err is human - then programmers are most human of us all.
"The Analytical Engine offers a new, a vast, and a powerful language . . .
for the purposes of mankind."
— Augusta Ada Byron, Lady Lovelace (1851)
Thread moved, debugger unknown.
Ok...thanks all, I went through the various documents and I got my solutions.
thanks once again for great support