我有一个表示手势事件的数据结构:
public class GestureData {
private int gestureType;
private float arg1;
private float arg2;
public GestureData (int gestureType, float arg1, float arg2) {
this.gestureType = gestureType;
this.arg1 = arg1;
this.arg2 = arg2;
}
}
我试图通过蓝牙传输这个对象,从机器人到电脑 我发现current post建议protobuf 这是一个很好的做法吗?