2015-03-31 90 views
1

如果沒有列表,我可以創建Order類的原型,但是當我開始使用Order類中的List時,它對我沒有任何作用。會是怎樣的原型文件創建類的原型

public class Order { 

     @SuppressWarnings("unused") 
     private int orderID; 
     @SuppressWarnings("unused") 
     private int quantity; 
     private List<String> product; 

    } 

回答

1

一個基本的出發點可能是:

message Order { 
    optional int32 orderID = 1; 
    optional int32 quantity = 2; 
    repeated string product = 3; 
} 

我不能告訴你,你想要的場數,也不是整數編碼(符號,無符號,zizag,固定等)