(int sourceLength)
| 151 | } |
| 152 | |
| 153 | private void checkCopySize(int sourceLength) { |
| 154 | long arrSize = size(); |
| 155 | if (arrSize != sourceLength) { |
| 156 | throw new IllegalArgumentException( |
| 157 | String.format("Array shape size not match: %d v.s. %d", sourceLength, size())); |
| 158 | } |
| 159 | } |
| 160 | |
| 161 | /** |
| 162 | * Copy from a raw byte array. |