test.jr
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:1k
源码类别:

网格计算

开发平台:

Java

  1. module org.apache.hadoop.record {
  2.     class RecRecord0 {
  3.         ustring     stringVal;
  4.     }
  5.     class RecRecord1 {
  6.         boolean         boolVal;
  7.         byte            byteVal;
  8.         int             intVal;
  9.         long            longVal;
  10.         float           floatVal; // testing inline comment
  11.         double          doubleVal; /* testing comment */
  12.         ustring         stringVal; /* testing multi-line
  13.                                     * comment */
  14.         buffer          bufferVal; // testing another // inline comment 
  15.         vector<ustring> vectorVal;
  16.         map<ustring, ustring>   mapVal;
  17.         RecRecord0      recordVal;
  18.     }
  19.     
  20.   class RecRecordOld {
  21.    ustring name;
  22.    vector<long> ivec;
  23.    vector<vector<RecRecord0>> svec;
  24.    RecRecord0 inner;
  25.    vector<vector<vector<ustring>>> strvec;
  26.    float i1;
  27.    map<byte, ustring> map1;
  28.    vector<map<int, long>> mvec1;
  29.    vector<map<int, long>> mvec2;
  30.   }
  31.   
  32.   /* RecRecordNew is a lot like RecRecordOld. Helps test for versioning. */
  33.   class RecRecordNew {
  34.    ustring name2;
  35.    RecRecord0 inner;
  36.    vector<int> ivec;
  37.    vector<vector<int>> svec;
  38.    vector<vector<vector<ustring>>> strvec;
  39. int i1;  
  40. map<long, ustring> map1;
  41.    vector<map<int, long>> mvec2;
  42.   }
  43.   
  44. }