|
|
发表于 2016-4-7 13:57:13
|
显示全部楼层
你用下面代码输出就知道了
1 A2 ?3 ~) k+ g- d4 k% i, o5 J$ {! h! sdo+ W" N9 d8 x( x. G; d O+ w$ W
seedTab.create;
A( h, `' J7 k* M9 y seedTab.writeRow(1,1,0,1,"Size of demand");-- stream 1 = stream 2 n- Q: g) u9 T2 j; K, a- |8 K
seedTab.writeRow(1,2,1,0,"Interarrival time of customers");5 k2 I9 J. p( y# G
seedTab.writeRow(1,3,1,1,"Lead time");
$ F% {3 L# V" o$ g: Q0 O# V' U/ _ print seedTab[3,2];
( a1 D5 R* F+ l: I2 a/ R8 ?6 D* M# F0 [, G. X K
-- ……
" @( p, D( E- n) _ Mend;& ]# ~* P# W/ ~7 ] T# p
3 J- f' ~% |( ?- \, `0 `$ ~<Path>.writeRow(Column:<any>, Row:<any>, Value:<any> [,Value:<any>, ..., Value:<any>]);0 r) @9 ~/ I/ D4 J* O o) ~& N
这个说的也很清楚 , R. W' T9 `2 y4 N
writeRow(1,1,0,1,"Size of demand") 就是从 第一列 第一行开始 依次按排写入 0,1,"Size of demand" |
|