关于idea 的debug 调试

public static void main(String[] args) {

        String name="1";
     int i = name.hashCode();
     System.out.println(i);


     //f5  仅仅在你写的代码中  进行   进入下一步的 操作
    //f6    在类中进行下一步的操作
    //f7   在 force step into  能够进入到jar包类中进行操作

}

猜你喜欢

转载自blog.csdn.net/qq_34627002/article/details/88797549