Java tutorial
public class Main { public static void main(String[] args) { Thread t = Thread.currentThread(); StackTraceElement e = t.getStackTrace()[0]; Object ob = "a"; System.out.println(e.equals(ob)); } }