0
我試圖擴展oscP5庫中的TcpClient類以進行處理。我已經在主草圖中導入了netP5。*和oscP5。*。但是,下面的代碼產生此錯誤:期待TRIPLE_DOT,找到','。我如何擴展它有什麼問題?我應該在構造函數中添加所有這些參數嗎?在oscP5處理庫中擴展TcpClient類
class GameClient extends netP5.TcpClient {
int score;
//some more variables
public TcpClient(Object theObject, String, theAddress, int thePort) {
//This is the constructor.
}
//I want to override this function
public void dispose() {
println("dispose() called.");
}
}
感謝您的幫助。