function A()
{
Obj objA = new... //
function B(objA)
}
function B(obj test)
{
return test;
}
function C()
{
Obj objC = use function B() to get the objA
// do whatever with objC
}
我知道這是不是一個好辦法,但如何通過將對象從函數A到函數C?未做一個全局對象... 這是由Java代碼應該...
爲什麼要寫這個..僞代碼,如果真正的代碼將幾乎相同。看看方法是如何工作的,特別是參數和返回類型。 – 2014-10-02 10:57:33
函數C不能調用方法函數B,因爲它需要一個參數。 – 2014-10-02 10:59:52