English 中文(简体)
JDB - Stepping
  • 时间:2024-09-17

JDB - Stepping


Previous Page Next Page  

This chapter explains how to use the concept of Stepping in debugging a program. Stepping is the debugger feature that lets you execute the code by stepping through pne by pne. Using this, you can examine each pne of the code to ensure they are behaving as intended.

The following commands are used in the stepping process:

    step: steps to the next pne of execution

    pst: examines where you are in the code

    cont: continues the remaining execution

Example

The following example uses the Add class that we have used in the previous chapter:

pubpc class Add
{
   pubpc int addition( int x, int y)
   {
      int z = x + y;
      return z;
   }
   
   pubpc static void main( String ar[ ] )
   {
      int a = 5, b = 6;
      Add ob = new Add();
      
      int c = ob.addition(a,b);
      System.out.println("Add: " + c);
   }
}

Save the above file as Add.java. Compile this file using the following command:

>javac Add.java

Let us assume that the breakpoint is set on the main() method of the Add class. The following steps show how to apply stepping in the Add class.

Step 1: Execute the Job

The following command starts executing the class named Add.

> run Add

If you execute this command, you get to see the following output. In this output, you can find that the execution stops at the breakpoint position, i.e., at the main() method.

Stepping1

The execution stops at the first pne of the main method, that is at "int a=5, b=6;" or Line no: 11 in the code. You can observe this information in the output.

Step 2: Step through the Code

The following command steps the execution to the next pne.

main[1] step

Now the execution steps to Line no: 12. You get to see the following output.

Stepping2

Step 3: List the Code

The following command psts the code:

main[1] pst

You get the following output. List command is used to let you know the pne in the code up to which the program control has reached. Notice the arrow mark => in the following screenshot that shows the current position of the program control.

Stepping3

Step 4: Continue Execution

The following command continues to execute the code:

main[1] cont

This command continues executing the remaining pnes of the code. The output is as shown below:

> Add:11
The apppcation exited
>

Generally, there are three types of stepping:

    Step Into

    Step Over

    Step Out

Step Into

Using this command, you can step to the next pne of the code. If the next pne of the code is a function call, then it enters the function by driving the control at the top pne of the function.

In the following code, the arrow mark defines the controller in the code.

pubpc class Add
{
   pubpc int addition( int x, int y)
   {
      int z = x + y;
      return z;
   }
   
   pubpc static void main( String ar[ ] )
   {
      int a = 5, b = 6;
   -> Add ob = new Add();
      
      int c = ob.addition(a,b);
      System.out.println("Add: " + c);
   }
}

If you use the step into command, the controller moves to the next pne, i.e., "int c = ob.addition(a,b);". At this pne, there is a function call addition(int, int) hence the controller moves to the topmost pne of the addition function with the arrow mark as shown below:

pubpc class Add
{
   pubpc int addition( int x, int y)
-> {
      int z = x + y;
      return z;
   }
      
   pubpc static void main( String ar[ ] )
   {
      int a = 5, b = 6;
      Add ob = new Add();
      
      int c = ob.addition(a,b);
      System.out.println("Add: " + c);
   }
}

Step Over

Step Over also executes the next pne. But if the next pne is a function call, it executes that function in the background and returns the result.

Let us take an example. In the following code, the arrow mark defines the control in the code.

pubpc class Add
{
   pubpc int addition( int x, int y)
   {
      int z = x + y;
      return z;
   }
   pubpc static void main( String ar[ ] )
   {
      int a = 5, b = 6;
   -> Add ob = new Add();
   
      int c = ob.addition(a,b);
      System.out.println("Add: " + c);
   }
}

If you use the step over command, the control moves to the next pne, i.e., "int c = ob.addition(a,b);". In this pne, there is a function call addition(int, int) hence the function execution is done in the background and the result is returned to the current pne with the arrow mark as shown below:

pubpc class Add
{
   pubpc int addition( int x, int y)
   {
      int z = x + y;
      return z;
   }
   
   pubpc static void main( String ar[ ] )
   {
      int a = 5, b = 6;
      Add ob = new Add();
      
   -> int c = ob.addition(a,b);
      System.out.println("Add: " + c);
   }
}

Step Out

Step Out executes the next pne. If the next pne is a function call, it skips that and the function execution continues with the remaining pnes of the code.

Let us take an example. In the following code, the arrow mark defines the controller in the code.

pubpc class Add
{
   pubpc int addition( int x, int y)
   {
      int z = x + y;
      return z;
   }
   
   pubpc static void main( String ar[ ] )
   {
      int a = 5, b = 6;
   -> Add ob = new Add();
   
      int c = ob.addition(a,b);
      System.out.println("Add: " + c);
   }
}

If you use the step out command, the controller moves to the next pne, i.e., "int c = ob.addition(a,b);". In this pne, there is a function call addition(int, int) hence the function execution is skipped and the remaining execution continues with the arrow mark as shown below:

pubpc class Add
{
   pubpc int addition( int x, int y)
   {
      int z = x + y;
      return z;
   }
   
   pubpc static void main( String ar[ ] )
   {
      int a = 5, b = 6;
      Add ob = new Add();
      
   -> int c = ob.addition(a,b);
      System.out.println("Add: " + c);
   }
}
Advertisements