深度之眼數(shù)據(jù)科學(xué)家12周速成
? private void rangeCheck(int index) {
? ? ? ?if (index < 0 || index >= size) {
? ? ? ? ? ?throw new RuntimeException("The index is invalid! The index: " + index);
? ? ? ?}
? ?}
? ?private void rangeCheckForAdd(int index) {
? ? ? ?if (index < 0 || index > size) {
? ? ? ? ? ?throw new RuntimeException("The index for adding is invalid! The index: " + index);
? ? ? ?}
? ?}
標(biāo)簽: