public class StringTest{
public void postData() {
String callbackURL = "abc.cde.com";
String donationId = "1233445";
examplePayment(callbackURL,donationId);
}
private void examplePayment(String pStrCallbackURL , String pStrDonationId){
System.out.println("Callback url"+ pStrCallbackURL);
System.out.println("DonationId "+ pStrDonationId);
}
}
,如果你想使你的examplePayment方法知道哪些方法發送的字符串,然後再添加另一種方法參數,說「pCallingMethod 「。
的方法看起來就像
private void examplePayment(String pStrCallbackURL , String pStrDonationId , pStrCallingMethod){
System.out.println("Callback url"+ pStrCallbackURL);
System.out.println("DonationId "+ pStrDonationId);
System.out.println("Calling Method"+ pStrCallingMethod);
}
傳遞CallingMethodName
作爲參數傳遞給這個方法,只要你撥打examplePayment()
。
這可以是一個解決方案。
說真的,如果你是這個綠色不開始與android。從簡單的舊Java開始,當你有一些背景時,開始使用android。 – SJuan76 2011-12-23 09:44:04