在Java中,調(diào)用其他類(lèi)的方法通常需要?jiǎng)?chuàng)建該類(lèi)的對(duì)象,然后通過(guò)該對(duì)象來(lái)調(diào)用方法。具體步驟如下:
new
關(guān)鍵字和構(gòu)造函數(shù)來(lái)實(shí)例化其他類(lèi)的對(duì)象。OtherClass otherObject = new OtherClass();
otherObject.methodName();
如果方法需要參數(shù),則需要在方法名后的括號(hào)內(nèi)傳入相應(yīng)的參數(shù)。
otherObject.methodName(parameter1, parameter2);