* Read string array * 读取字符串数组
(count: number)
| 347 | * 读取字符串数组 |
| 348 | */ |
| 349 | public readSArray(count: number): string[] { |
| 350 | const arr: string[] = []; |
| 351 | for (let i = 0; i < count; i++) { |
| 352 | arr.push(this.readS()); |
| 353 | } |
| 354 | return arr; |
| 355 | } |
| 356 | |
| 357 | /** |
| 358 | * Read custom string with specified length |
no test coverage detected