我想傳遞類之間的一些信息,如成功或失敗,失敗的原因,缺失的數據等 但我不知道哪個是正確的方式來做到這一點。此外,我無法將信息作爲參數傳遞,因爲我需要將其恢復。由於已有返回值,因此無法返回任何值。 例如:假設我有類這樣的(它只是啞代碼的實際代碼很長)如何在對象之間傳遞數據
class A {
B b = new B();
C c = new C();
b.putData();
c.putData();
//Want to print all the inforamtion of what happend
//in methods of putData and getData. How to do that?
}
class B {
boolean putData() {
D d = new D();
Data data =d.getData();
//some code goes here
}
}
Class C{
boolean putData() {
//some code here
}
}
傳遞一個對象作爲參數? – jean
'想要以最簡單的方式爲您感興趣的值添加System.out.println(...)'語句,打印putData和getData.'方法中發生的所有事件的信息。更好的方法:更改你的問題要清楚你想要達到什麼目的。 – SubOptimal
對不起,我忘記提及我無法傳遞參數,因爲我必須將其恢復,這是我無法完成的,因爲所有方法都已返回一些對象。 – ABYS