1. 程式人生 > >eclipse除錯的一些技巧

eclipse除錯的一些技巧

如果當前的除錯的位置是一個方法而這個方法的引數也是一個方法
那麼先進入的話會先進入引數的方法,然後返回在進入方法才能進入這個方法本身。

例子

public class Player{
	private int id;
	public void setId(int id){
	this.id=id;
	}
	public int getId(){
	return id;
	}
}
public class Server(){
	public void testMethod(int id){
		System.out.println("測試id為"+id);
	}
}
public
class Test(){ public static void main(String[] args){ Player player=new Player(); Server server=new Server(); server.testMethod(player.getId()); //如果除錯到這 會先進到getId()方法 我們想去testMethod()就要先進去在退出在進去就到了 testMethod()方法,這裡只是舉了一個很簡單的例子; } }