0

Java class has a List<Object> Property , how definition List<Object> in protocol buffers proto file,as google protocol buffers no support Object of java world ?


With your original SQL as base (if you want to sort first for id and then for sub_id):

$sql="select * from gallery group by sub_id order by id desc, subid desc limit 0,4";

If it is not intended to eliminate the "duplicates", then the following sql could be used instead of the above one:

$sql="select * from gallery order by id desc, subid desc limit 0,4";
4

1 に答える 1

1

一般に、プロトコル バッファ メッセージ タイプは、標準の Java 値タイプとは独立して存在します。または、Java 値タイプがプロトコル バッファのラッパーとして実装されることもあります。

ただし、この特定のケースでは、プロトコル バッファ コンパイラはrepeatedフィールドを Java にコンパイルしますList。もちろん、リストのオブジェクトをプロトバッファリングする方法を理解する必要がありますが、あなたの質問ではそれを支援するのに十分な情報が得られません.

于 2012-07-30T10:00:55.840 に答える