BAEL-2846- Intro to the Java Debug Interface (#7606)

This commit is contained in:
Anshul Bansal
2019-08-21 09:27:31 +03:00
committed by Grzegorz Piwowarek
parent 5bc7d85eee
commit b5272dedb5
4 changed files with 317 additions and 0 deletions
@@ -0,0 +1,14 @@
package com.baeldung.jdi;
public class JDIExample {
public static void main(String[] args) {
String jpda = "Java Platform Debugger Architecture";
System.out.println("Hi Everyone, Welcome to " + jpda); //add a break point here
String jdi = "Java Debug Interface"; //add a break point here and also stepping in here
String text = "Today, we'll dive into " + jdi;
System.out.println(text);
}
}