我們使用Kryonet通過RMI調用服務器方法。 如果服務返回正常值(如true/false),它工作正常。 但是,當服務拋出異常,我們得到一個無限循環導致服務器上的StackOverflowError。 Exception in thread "Server" java.lang.StackOverflowError
at com.esotericsoftware.kryo.Kryo.getR
我想使用Kryonet發送對象。對於大多數對象來說它工作正常,但對於我自己的Vector實現來說,它會崩潰。課程在雙方註冊。它包含一個空構造函數,並且所有變量都被公開化。 public strictfp class StrictVector2f implements StrictVector
{
public double x;
public double y;