You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 14, 2019. It is now read-only.
public class MainTest {
public static void main(String[] args) {
Person p = new Person();
p.setName("justin");
p.setAge(20);
int i = 1;
for (; i > 0;) {
p.getName();
p.getAge();
}
}
}
The text was updated successfully, but these errors were encountered:
使用Trace命令行,跟踪方法的执行时间。如下面的getName()和getAge()方法。第一此执行trace命令,可以跟踪到执行时间;再执行第二次,第三次,。。。。。都是提示,No traced method invoked。
The text was updated successfully, but these errors were encountered: