Sendes statiske variabler over RMI
Er der forskel på den tid det tager at sende disse to klasser, over RMI?public class Kommando
{
static final byte CLOSE = 100;
static final byte N = 1;
static final byte NE = 2;
static final byte E = 3;
static final byte SE = 4;
static final byte S = 5;
static final byte SW = 6;
static final byte W = 7;
static final byte NW = 8;
static final byte STOP = 9;
static final byte SIT = 10;
static final byte STAND = 11;
static final byte SHOOT = 12;
byte bruger;
byte id;
public Kommando(byte b, byte i)
{
bruger = b;
id = i;
}
}
public class Kommando
{
byte bruger;
byte id;
public Kommando(byte b, byte i)
{
bruger = b;
id = i;
}
}