久久精品国产精品国产精品污,男人扒开添女人下部免费视频,一级国产69式性姿势免费视频,夜鲁夜鲁很鲁在线视频 视频,欧美丰满少妇一区二区三区,国产偷国产偷亚洲高清人乐享,中文 在线 日韩 亚洲 欧美,熟妇人妻无乱码中文字幕真矢织江,一区二区三区人妻制服国产

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

ArrayList add(int index,E element)

發布時間:2025/4/14 编程问答 20 豆豆
生活随笔 收集整理的這篇文章主要介紹了 ArrayList add(int index,E element) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

ArrayList? add(int index,E element)


?

add(E e)方法的代碼

1 /** 2 * Appends the specified element to the end of this list. 3 * 4 * @param e element to be appended to this list 5 * @return <tt>true</tt> (as specified by {@link Collection#add}) 6 */ 7 public boolean add(E e) { 8 ensureCapacityInternal(size + 1); // Increments modCount!! 9 elementData[size++] = e; 10 return true;// 11 }

add(int index , E element) 方法的代碼

1 /** 2 * Inserts the specified element at the specified position in this 3 * list. Shifts the element currently at that position (if any) and 4 * any subsequent elements to the right (adds one to their indices). 5 * 6 * @param index index at which the specified element is to be inserted 7 * @param element element to be inserted 8 * @throws IndexOutOfBoundsException {@inheritDoc} 9 */ 10 public void add(int index, E element) { 11 rangeCheckForAdd(index);//判斷index是否合法,跳到該方法代碼,如果index>size||index<0 throw new IndexOutOfBoundsExcedption(...見下圖 12 13 ensureCapacityInternal(size + 1); // Increments modCount!! 14 System.arraycopy(elementData, index, elementData, index + 1, 15 size - index);//所有index之后的元素向后移動一位。。 16 elementData[index] = element;//賦值 17 size++;//更新size 18 }

?

?

?

?


?

?

ArrayList類的代碼

? 1 /* 2 * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved. 3 * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 4 * 5 * 6 * 7 * 8 * 9 * 10 * 11 * 12 * 13 * 14 * 15 * 16 * 17 * 18 * 19 * 20 * 21 * 22 * 23 * 24 */ 25 26 package java.util; 27 28 import java.util.function.Consumer; 29 import java.util.function.Predicate; 30 import java.util.function.UnaryOperator; 31 import sun.misc.SharedSecrets; 32 33 /** 34 * Resizable-array implementation of the <tt>List</tt> interface. Implements 35 * all optional list operations, and permits all elements, including 36 * <tt>null</tt>. In addition to implementing the <tt>List</tt> interface, 37 * this class provides methods to manipulate the size of the array that is 38 * used internally to store the list. (This class is roughly equivalent to 39 * <tt>Vector</tt>, except that it is unsynchronized.) 40 * 41 * <p>The <tt>size</tt>, <tt>isEmpty</tt>, <tt>get</tt>, <tt>set</tt>, 42 * <tt>iterator</tt>, and <tt>listIterator</tt> operations run in constant 43 * time. The <tt>add</tt> operation runs in <i>amortized constant time</i>, 44 * that is, adding n elements requires O(n) time. All of the other operations 45 * run in linear time (roughly speaking). The constant factor is low compared 46 * to that for the <tt>LinkedList</tt> implementation. 47 * 48 * <p>Each <tt>ArrayList</tt> instance has a <i>capacity</i>. The capacity is 49 * the size of the array used to store the elements in the list. It is always 50 * at least as large as the list size. As elements are added to an ArrayList, 51 * its capacity grows automatically. The details of the growth policy are not 52 * specified beyond the fact that adding an element has constant amortized 53 * time cost. 54 * 55 * <p>An application can increase the capacity of an <tt>ArrayList</tt> instance 56 * before adding a large number of elements using the <tt>ensureCapacity</tt> 57 * operation. This may reduce the amount of incremental reallocation. 58 * 59 * <p><strong>Note that this implementation is not synchronized.</strong> 60 * If multiple threads access an <tt>ArrayList</tt> instance concurrently, 61 * and at least one of the threads modifies the list structurally, it 62 * <i>must</i> be synchronized externally. (A structural modification is 63 * any operation that adds or deletes one or more elements, or explicitly 64 * resizes the backing array; merely setting the value of an element is not 65 * a structural modification.) This is typically accomplished by 66 * synchronizing on some object that naturally encapsulates the list. 67 * 68 * If no such object exists, the list should be "wrapped" using the 69 * {@link Collections#synchronizedList Collections.synchronizedList} 70 * method. This is best done at creation time, to prevent accidental 71 * unsynchronized access to the list:<pre> 72 * List list = Collections.synchronizedList(new ArrayList(...));</pre> 73 * 74 * <p><a name="fail-fast"> 75 * The iterators returned by this class's {@link #iterator() iterator} and 76 * {@link #listIterator(int) listIterator} methods are <em>fail-fast</em>:</a> 77 * if the list is structurally modified at any time after the iterator is 78 * created, in any way except through the iterator's own 79 * {@link ListIterator#remove() remove} or 80 * {@link ListIterator#add(Object) add} methods, the iterator will throw a 81 * {@link ConcurrentModificationException}. Thus, in the face of 82 * concurrent modification, the iterator fails quickly and cleanly, rather 83 * than risking arbitrary, non-deterministic behavior at an undetermined 84 * time in the future. 85 * 86 * <p>Note that the fail-fast behavior of an iterator cannot be guaranteed 87 * as it is, generally speaking, impossible to make any hard guarantees in the 88 * presence of unsynchronized concurrent modification. Fail-fast iterators 89 * throw {@code ConcurrentModificationException} on a best-effort basis. 90 * Therefore, it would be wrong to write a program that depended on this 91 * exception for its correctness: <i>the fail-fast behavior of iterators 92 * should be used only to detect bugs.</i> 93 * 94 * <p>This class is a member of the 95 * <a href="{@docRoot}/../technotes/guides/collections/index.html"> 96 * Java Collections Framework</a>. 97 * 98 * @author Josh Bloch 99 * @author Neal Gafter 100 * @see Collection 101 * @see List 102 * @see LinkedList 103 * @see Vector 104 * @since 1.2 105 */ 106 107 public class ArrayList<E> extends AbstractList<E> 108 implements List<E>, RandomAccess, Cloneable, java.io.Serializable 109 { 110 private static final long serialVersionUID = 8683452581122892189L; 111 112 /** 113 * Default initial capacity. 114 */ 115 private static final int DEFAULT_CAPACITY = 10; 116 117 /** 118 * Shared empty array instance used for empty instances. 119 */ 120 private static final Object[] EMPTY_ELEMENTDATA = {}; 121 122 /** 123 * Shared empty array instance used for default sized empty instances. We 124 * distinguish this from EMPTY_ELEMENTDATA to know how much to inflate when 125 * first element is added. 126 */ 127 private static final Object[] DEFAULTCAPACITY_EMPTY_ELEMENTDATA = {}; 128 129 /** 130 * The array buffer into which the elements of the ArrayList are stored. 131 * The capacity of the ArrayList is the length of this array buffer. Any 132 * empty ArrayList with elementData == DEFAULTCAPACITY_EMPTY_ELEMENTDATA 133 * will be expanded to DEFAULT_CAPACITY when the first element is added. 134 */ 135 transient Object[] elementData; // non-private to simplify nested class access 136 137 /** 138 * The size of the ArrayList (the number of elements it contains). 139 * 140 * @serial 141 */ 142 private int size; 143 144 /** 145 * Constructs an empty list with the specified initial capacity. 146 * 147 * @param initialCapacity the initial capacity of the list 148 * @throws IllegalArgumentException if the specified initial capacity 149 * is negative 150 */ 151 public ArrayList(int initialCapacity) { 152 if (initialCapacity > 0) { 153 this.elementData = new Object[initialCapacity]; 154 } else if (initialCapacity == 0) { 155 this.elementData = EMPTY_ELEMENTDATA; 156 } else { 157 throw new IllegalArgumentException("Illegal Capacity: "+ 158 initialCapacity); 159 } 160 } 161 162 /** 163 * Constructs an empty list with an initial capacity of ten. 164 */ 165 public ArrayList() { 166 this.elementData = DEFAULTCAPACITY_EMPTY_ELEMENTDATA; 167 } 168 169 /** 170 * Constructs a list containing the elements of the specified 171 * collection, in the order they are returned by the collection's 172 * iterator. 173 * 174 * @param c the collection whose elements are to be placed into this list 175 * @throws NullPointerException if the specified collection is null 176 */ 177 public ArrayList(Collection<? extends E> c) { 178 elementData = c.toArray(); 179 if ((size = elementData.length) != 0) { 180 // c.toArray might (incorrectly) not return Object[] (see 6260652) 181 if (elementData.getClass() != Object[].class) 182 elementData = Arrays.copyOf(elementData, size, Object[].class); 183 } else { 184 // replace with empty array. 185 this.elementData = EMPTY_ELEMENTDATA; 186 } 187 } 188 189 /** 190 * Trims the capacity of this <tt>ArrayList</tt> instance to be the 191 * list's current size. An application can use this operation to minimize 192 * the storage of an <tt>ArrayList</tt> instance. 193 */ 194 public void trimToSize() { 195 modCount++; 196 if (size < elementData.length) { 197 elementData = (size == 0) 198 ? EMPTY_ELEMENTDATA 199 : Arrays.copyOf(elementData, size); 200 } 201 } 202 203 /** 204 * Increases the capacity of this <tt>ArrayList</tt> instance, if 205 * necessary, to ensure that it can hold at least the number of elements 206 * specified by the minimum capacity argument. 207 * 208 * @param minCapacity the desired minimum capacity 209 */ 210 public void ensureCapacity(int minCapacity) { 211 int minExpand = (elementData != DEFAULTCAPACITY_EMPTY_ELEMENTDATA) 212 // any size if not default element table 213 ? 0 214 // larger than default for default empty table. It's already 215 // supposed to be at default size. 216 : DEFAULT_CAPACITY; 217 218 if (minCapacity > minExpand) { 219 ensureExplicitCapacity(minCapacity); 220 } 221 } 222 223 private static int calculateCapacity(Object[] elementData, int minCapacity) { 224 if (elementData == DEFAULTCAPACITY_EMPTY_ELEMENTDATA) { 225 return Math.max(DEFAULT_CAPACITY, minCapacity); 226 } 227 return minCapacity; 228 } 229 230 private void ensureCapacityInternal(int minCapacity) { 231 ensureExplicitCapacity(calculateCapacity(elementData, minCapacity)); 232 } 233 234 private void ensureExplicitCapacity(int minCapacity) { 235 modCount++; 236 237 // overflow-conscious code 238 if (minCapacity - elementData.length > 0) 239 grow(minCapacity); 240 } 241 242 /** 243 * The maximum size of array to allocate. 244 * Some VMs reserve some header words in an array. 245 * Attempts to allocate larger arrays may result in 246 * OutOfMemoryError: Requested array size exceeds VM limit 247 */ 248 private static final int MAX_ARRAY_SIZE = Integer.MAX_VALUE - 8; 249 250 /** 251 * Increases the capacity to ensure that it can hold at least the 252 * number of elements specified by the minimum capacity argument. 253 * 254 * @param minCapacity the desired minimum capacity 255 */ 256 private void grow(int minCapacity) { 257 // overflow-conscious code 258 int oldCapacity = elementData.length; 259 int newCapacity = oldCapacity + (oldCapacity >> 1); 260 if (newCapacity - minCapacity < 0) 261 newCapacity = minCapacity; 262 if (newCapacity - MAX_ARRAY_SIZE > 0) 263 newCapacity = hugeCapacity(minCapacity); 264 // minCapacity is usually close to size, so this is a win: 265 elementData = Arrays.copyOf(elementData, newCapacity); 266 } 267 268 private static int hugeCapacity(int minCapacity) { 269 if (minCapacity < 0) // overflow 270 throw new OutOfMemoryError(); 271 return (minCapacity > MAX_ARRAY_SIZE) ? 272 Integer.MAX_VALUE : 273 MAX_ARRAY_SIZE; 274 } 275 276 /** 277 * Returns the number of elements in this list. 278 * 279 * @return the number of elements in this list 280 */ 281 public int size() { 282 return size; 283 } 284 285 /** 286 * Returns <tt>true</tt> if this list contains no elements. 287 * 288 * @return <tt>true</tt> if this list contains no elements 289 */ 290 public boolean isEmpty() { 291 return size == 0; 292 } 293 294 /** 295 * Returns <tt>true</tt> if this list contains the specified element. 296 * More formally, returns <tt>true</tt> if and only if this list contains 297 * at least one element <tt>e</tt> such that 298 * <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>. 299 * 300 * @param o element whose presence in this list is to be tested 301 * @return <tt>true</tt> if this list contains the specified element 302 */ 303 public boolean contains(Object o) { 304 return indexOf(o) >= 0; 305 } 306 307 /** 308 * Returns the index of the first occurrence of the specified element 309 * in this list, or -1 if this list does not contain the element. 310 * More formally, returns the lowest index <tt>i</tt> such that 311 * <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>, 312 * or -1 if there is no such index. 313 */ 314 public int indexOf(Object o) { 315 if (o == null) { 316 for (int i = 0; i < size; i++) 317 if (elementData[i]==null) 318 return i; 319 } else { 320 for (int i = 0; i < size; i++) 321 if (o.equals(elementData[i])) 322 return i; 323 } 324 return -1; 325 } 326 327 /** 328 * Returns the index of the last occurrence of the specified element 329 * in this list, or -1 if this list does not contain the element. 330 * More formally, returns the highest index <tt>i</tt> such that 331 * <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>, 332 * or -1 if there is no such index. 333 */ 334 public int lastIndexOf(Object o) { 335 if (o == null) { 336 for (int i = size-1; i >= 0; i--) 337 if (elementData[i]==null) 338 return i; 339 } else { 340 for (int i = size-1; i >= 0; i--) 341 if (o.equals(elementData[i])) 342 return i; 343 } 344 return -1; 345 } 346 347 /** 348 * Returns a shallow copy of this <tt>ArrayList</tt> instance. (The 349 * elements themselves are not copied.) 350 * 351 * @return a clone of this <tt>ArrayList</tt> instance 352 */ 353 public Object clone() { 354 try { 355 ArrayList<?> v = (ArrayList<?>) super.clone(); 356 v.elementData = Arrays.copyOf(elementData, size); 357 v.modCount = 0; 358 return v; 359 } catch (CloneNotSupportedException e) { 360 // this shouldn't happen, since we are Cloneable 361 throw new InternalError(e); 362 } 363 } 364 365 /** 366 * Returns an array containing all of the elements in this list 367 * in proper sequence (from first to last element). 368 * 369 * <p>The returned array will be "safe" in that no references to it are 370 * maintained by this list. (In other words, this method must allocate 371 * a new array). The caller is thus free to modify the returned array. 372 * 373 * <p>This method acts as bridge between array-based and collection-based 374 * APIs. 375 * 376 * @return an array containing all of the elements in this list in 377 * proper sequence 378 */ 379 public Object[] toArray() { 380 return Arrays.copyOf(elementData, size); 381 } 382 383 /** 384 * Returns an array containing all of the elements in this list in proper 385 * sequence (from first to last element); the runtime type of the returned 386 * array is that of the specified array. If the list fits in the 387 * specified array, it is returned therein. Otherwise, a new array is 388 * allocated with the runtime type of the specified array and the size of 389 * this list. 390 * 391 * <p>If the list fits in the specified array with room to spare 392 * (i.e., the array has more elements than the list), the element in 393 * the array immediately following the end of the collection is set to 394 * <tt>null</tt>. (This is useful in determining the length of the 395 * list <i>only</i> if the caller knows that the list does not contain 396 * any null elements.) 397 * 398 * @param a the array into which the elements of the list are to 399 * be stored, if it is big enough; otherwise, a new array of the 400 * same runtime type is allocated for this purpose. 401 * @return an array containing the elements of the list 402 * @throws ArrayStoreException if the runtime type of the specified array 403 * is not a supertype of the runtime type of every element in 404 * this list 405 * @throws NullPointerException if the specified array is null 406 */ 407 @SuppressWarnings("unchecked") 408 public <T> T[] toArray(T[] a) { 409 if (a.length < size) 410 // Make a new array of a's runtime type, but my contents: 411 return (T[]) Arrays.copyOf(elementData, size, a.getClass()); 412 System.arraycopy(elementData, 0, a, 0, size); 413 if (a.length > size) 414 a[size] = null; 415 return a; 416 } 417 418 // Positional Access Operations 419 420 @SuppressWarnings("unchecked") 421 E elementData(int index) { 422 return (E) elementData[index]; 423 } 424 425 /** 426 * Returns the element at the specified position in this list. 427 * 428 * @param index index of the element to return 429 * @return the element at the specified position in this list 430 * @throws IndexOutOfBoundsException {@inheritDoc} 431 */ 432 public E get(int index) { 433 rangeCheck(index); 434 435 return elementData(index); 436 } 437 438 /** 439 * Replaces the element at the specified position in this list with 440 * the specified element. 441 * 442 * @param index index of the element to replace 443 * @param element element to be stored at the specified position 444 * @return the element previously at the specified position 445 * @throws IndexOutOfBoundsException {@inheritDoc} 446 */ 447 public E set(int index, E element) { 448 rangeCheck(index); 449 450 E oldValue = elementData(index); 451 elementData[index] = element; 452 return oldValue; 453 } 454 455 /** 456 * Appends the specified element to the end of this list. 457 * 458 * @param e element to be appended to this list 459 * @return <tt>true</tt> (as specified by {@link Collection#add}) 460 */ 461 public boolean add(E e) { 462 ensureCapacityInternal(size + 1); // Increments modCount!! 463 elementData[size++] = e; 464 return true; 465 } 466 467 /** 468 * Inserts the specified element at the specified position in this 469 * list. Shifts the element currently at that position (if any) and 470 * any subsequent elements to the right (adds one to their indices). 471 * 472 * @param index index at which the specified element is to be inserted 473 * @param element element to be inserted 474 * @throws IndexOutOfBoundsException {@inheritDoc} 475 */ 476 public void add(int index, E element) { 477 rangeCheckForAdd(index); 478 479 ensureCapacityInternal(size + 1); // Increments modCount!! 480 System.arraycopy(elementData, index, elementData, index + 1, 481 size - index); 482 elementData[index] = element; 483 size++; 484 } 485 486 /** 487 * Removes the element at the specified position in this list. 488 * Shifts any subsequent elements to the left (subtracts one from their 489 * indices). 490 * 491 * @param index the index of the element to be removed 492 * @return the element that was removed from the list 493 * @throws IndexOutOfBoundsException {@inheritDoc} 494 */ 495 public E remove(int index) { 496 rangeCheck(index); 497 498 modCount++; 499 E oldValue = elementData(index); 500 501 int numMoved = size - index - 1; 502 if (numMoved > 0) 503 System.arraycopy(elementData, index+1, elementData, index, 504 numMoved); 505 elementData[--size] = null; // clear to let GC do its work 506 507 return oldValue; 508 } 509 510 /** 511 * Removes the first occurrence of the specified element from this list, 512 * if it is present. If the list does not contain the element, it is 513 * unchanged. More formally, removes the element with the lowest index 514 * <tt>i</tt> such that 515 * <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt> 516 * (if such an element exists). Returns <tt>true</tt> if this list 517 * contained the specified element (or equivalently, if this list 518 * changed as a result of the call). 519 * 520 * @param o element to be removed from this list, if present 521 * @return <tt>true</tt> if this list contained the specified element 522 */ 523 public boolean remove(Object o) { 524 if (o == null) { 525 for (int index = 0; index < size; index++) 526 if (elementData[index] == null) { 527 fastRemove(index); 528 return true; 529 } 530 } else { 531 for (int index = 0; index < size; index++) 532 if (o.equals(elementData[index])) { 533 fastRemove(index); 534 return true; 535 } 536 } 537 return false; 538 } 539 540 /* 541 * Private remove method that skips bounds checking and does not 542 * return the value removed. 543 */ 544 private void fastRemove(int index) { 545 modCount++; 546 int numMoved = size - index - 1; 547 if (numMoved > 0) 548 System.arraycopy(elementData, index+1, elementData, index, 549 numMoved); 550 elementData[--size] = null; // clear to let GC do its work 551 } 552 553 /** 554 * Removes all of the elements from this list. The list will 555 * be empty after this call returns. 556 */ 557 public void clear() { 558 modCount++; 559 560 // clear to let GC do its work 561 for (int i = 0; i < size; i++) 562 elementData[i] = null; 563 564 size = 0; 565 } 566 567 /** 568 * Appends all of the elements in the specified collection to the end of 569 * this list, in the order that they are returned by the 570 * specified collection's Iterator. The behavior of this operation is 571 * undefined if the specified collection is modified while the operation 572 * is in progress. (This implies that the behavior of this call is 573 * undefined if the specified collection is this list, and this 574 * list is nonempty.) 575 * 576 * @param c collection containing elements to be added to this list 577 * @return <tt>true</tt> if this list changed as a result of the call 578 * @throws NullPointerException if the specified collection is null 579 */ 580 public boolean addAll(Collection<? extends E> c) { 581 Object[] a = c.toArray(); 582 int numNew = a.length; 583 ensureCapacityInternal(size + numNew); // Increments modCount 584 System.arraycopy(a, 0, elementData, size, numNew); 585 size += numNew; 586 return numNew != 0; 587 } 588 589 /** 590 * Inserts all of the elements in the specified collection into this 591 * list, starting at the specified position. Shifts the element 592 * currently at that position (if any) and any subsequent elements to 593 * the right (increases their indices). The new elements will appear 594 * in the list in the order that they are returned by the 595 * specified collection's iterator. 596 * 597 * @param index index at which to insert the first element from the 598 * specified collection 599 * @param c collection containing elements to be added to this list 600 * @return <tt>true</tt> if this list changed as a result of the call 601 * @throws IndexOutOfBoundsException {@inheritDoc} 602 * @throws NullPointerException if the specified collection is null 603 */ 604 public boolean addAll(int index, Collection<? extends E> c) { 605 rangeCheckForAdd(index); 606 607 Object[] a = c.toArray(); 608 int numNew = a.length; 609 ensureCapacityInternal(size + numNew); // Increments modCount 610 611 int numMoved = size - index; 612 if (numMoved > 0) 613 System.arraycopy(elementData, index, elementData, index + numNew, 614 numMoved); 615 616 System.arraycopy(a, 0, elementData, index, numNew); 617 size += numNew; 618 return numNew != 0; 619 } 620 621 /** 622 * Removes from this list all of the elements whose index is between 623 * {@code fromIndex}, inclusive, and {@code toIndex}, exclusive. 624 * Shifts any succeeding elements to the left (reduces their index). 625 * This call shortens the list by {@code (toIndex - fromIndex)} elements. 626 * (If {@code toIndex==fromIndex}, this operation has no effect.) 627 * 628 * @throws IndexOutOfBoundsException if {@code fromIndex} or 629 * {@code toIndex} is out of range 630 * ({@code fromIndex < 0 || 631 * fromIndex >= size() || 632 * toIndex > size() || 633 * toIndex < fromIndex}) 634 */ 635 protected void removeRange(int fromIndex, int toIndex) { 636 modCount++; 637 int numMoved = size - toIndex; 638 System.arraycopy(elementData, toIndex, elementData, fromIndex, 639 numMoved); 640 641 // clear to let GC do its work 642 int newSize = size - (toIndex-fromIndex); 643 for (int i = newSize; i < size; i++) { 644 elementData[i] = null; 645 } 646 size = newSize; 647 } 648 649 /** 650 * Checks if the given index is in range. If not, throws an appropriate 651 * runtime exception. This method does *not* check if the index is 652 * negative: It is always used immediately prior to an array access, 653 * which throws an ArrayIndexOutOfBoundsException if index is negative. 654 */ 655 private void rangeCheck(int index) { 656 if (index >= size) 657 throw new IndexOutOfBoundsException(outOfBoundsMsg(index)); 658 } 659 660 /** 661 * A version of rangeCheck used by add and addAll. 662 */ 663 private void rangeCheckForAdd(int index) { 664 if (index > size || index < 0) 665 throw new IndexOutOfBoundsException(outOfBoundsMsg(index)); 666 } 667 668 /** 669 * Constructs an IndexOutOfBoundsException detail message. 670 * Of the many possible refactorings of the error handling code, 671 * this "outlining" performs best with both server and client VMs. 672 */ 673 private String outOfBoundsMsg(int index) { 674 return "Index: "+index+", Size: "+size; 675 } 676 677 /** 678 * Removes from this list all of its elements that are contained in the 679 * specified collection. 680 * 681 * @param c collection containing elements to be removed from this list 682 * @return {@code true} if this list changed as a result of the call 683 * @throws ClassCastException if the class of an element of this list 684 * is incompatible with the specified collection 685 * (<a href="Collection.html#optional-restrictions">optional</a>) 686 * @throws NullPointerException if this list contains a null element and the 687 * specified collection does not permit null elements 688 * (<a href="Collection.html#optional-restrictions">optional</a>), 689 * or if the specified collection is null 690 * @see Collection#contains(Object) 691 */ 692 public boolean removeAll(Collection<?> c) { 693 Objects.requireNonNull(c); 694 return batchRemove(c, false); 695 } 696 697 /** 698 * Retains only the elements in this list that are contained in the 699 * specified collection. In other words, removes from this list all 700 * of its elements that are not contained in the specified collection. 701 * 702 * @param c collection containing elements to be retained in this list 703 * @return {@code true} if this list changed as a result of the call 704 * @throws ClassCastException if the class of an element of this list 705 * is incompatible with the specified collection 706 * (<a href="Collection.html#optional-restrictions">optional</a>) 707 * @throws NullPointerException if this list contains a null element and the 708 * specified collection does not permit null elements 709 * (<a href="Collection.html#optional-restrictions">optional</a>), 710 * or if the specified collection is null 711 * @see Collection#contains(Object) 712 */ 713 public boolean retainAll(Collection<?> c) { 714 Objects.requireNonNull(c); 715 return batchRemove(c, true); 716 } 717 718 private boolean batchRemove(Collection<?> c, boolean complement) { 719 final Object[] elementData = this.elementData; 720 int r = 0, w = 0; 721 boolean modified = false; 722 try { 723 for (; r < size; r++) 724 if (c.contains(elementData[r]) == complement) 725 elementData[w++] = elementData[r]; 726 } finally { 727 // Preserve behavioral compatibility with AbstractCollection, 728 // even if c.contains() throws. 729 if (r != size) { 730 System.arraycopy(elementData, r, 731 elementData, w, 732 size - r); 733 w += size - r; 734 } 735 if (w != size) { 736 // clear to let GC do its work 737 for (int i = w; i < size; i++) 738 elementData[i] = null; 739 modCount += size - w; 740 size = w; 741 modified = true; 742 } 743 } 744 return modified; 745 } 746 747 /** 748 * Save the state of the <tt>ArrayList</tt> instance to a stream (that 749 * is, serialize it). 750 * 751 * @serialData The length of the array backing the <tt>ArrayList</tt> 752 * instance is emitted (int), followed by all of its elements 753 * (each an <tt>Object</tt>) in the proper order. 754 */ 755 private void writeObject(java.io.ObjectOutputStream s) 756 throws java.io.IOException{ 757 // Write out element count, and any hidden stuff 758 int expectedModCount = modCount; 759 s.defaultWriteObject(); 760 761 // Write out size as capacity for behavioural compatibility with clone() 762 s.writeInt(size); 763 764 // Write out all elements in the proper order. 765 for (int i=0; i<size; i++) { 766 s.writeObject(elementData[i]); 767 } 768 769 if (modCount != expectedModCount) { 770 throw new ConcurrentModificationException(); 771 } 772 } 773 774 /** 775 * Reconstitute the <tt>ArrayList</tt> instance from a stream (that is, 776 * deserialize it). 777 */ 778 private void readObject(java.io.ObjectInputStream s) 779 throws java.io.IOException, ClassNotFoundException { 780 elementData = EMPTY_ELEMENTDATA; 781 782 // Read in size, and any hidden stuff 783 s.defaultReadObject(); 784 785 // Read in capacity 786 s.readInt(); // ignored 787 788 if (size > 0) { 789 // be like clone(), allocate array based upon size not capacity 790 int capacity = calculateCapacity(elementData, size); 791 SharedSecrets.getJavaOISAccess().checkArray(s, Object[].class, capacity); 792 ensureCapacityInternal(size); 793 794 Object[] a = elementData; 795 // Read in all elements in the proper order. 796 for (int i=0; i<size; i++) { 797 a[i] = s.readObject(); 798 } 799 } 800 } 801 802 /** 803 * Returns a list iterator over the elements in this list (in proper 804 * sequence), starting at the specified position in the list. 805 * The specified index indicates the first element that would be 806 * returned by an initial call to {@link ListIterator#next next}. 807 * An initial call to {@link ListIterator#previous previous} would 808 * return the element with the specified index minus one. 809 * 810 * <p>The returned list iterator is <a href="#fail-fast"><i>fail-fast</i></a>. 811 * 812 * @throws IndexOutOfBoundsException {@inheritDoc} 813 */ 814 public ListIterator<E> listIterator(int index) { 815 if (index < 0 || index > size) 816 throw new IndexOutOfBoundsException("Index: "+index); 817 return new ListItr(index); 818 } 819 820 /** 821 * Returns a list iterator over the elements in this list (in proper 822 * sequence). 823 * 824 * <p>The returned list iterator is <a href="#fail-fast"><i>fail-fast</i></a>. 825 * 826 * @see #listIterator(int) 827 */ 828 public ListIterator<E> listIterator() { 829 return new ListItr(0); 830 } 831 832 /** 833 * Returns an iterator over the elements in this list in proper sequence. 834 * 835 * <p>The returned iterator is <a href="#fail-fast"><i>fail-fast</i></a>. 836 * 837 * @return an iterator over the elements in this list in proper sequence 838 */ 839 public Iterator<E> iterator() { 840 return new Itr(); 841 } 842 843 /** 844 * An optimized version of AbstractList.Itr 845 */ 846 private class Itr implements Iterator<E> { 847 int cursor; // index of next element to return 848 int lastRet = -1; // index of last element returned; -1 if no such 849 int expectedModCount = modCount; 850 851 Itr() {} 852 853 public boolean hasNext() { 854 return cursor != size; 855 } 856 857 @SuppressWarnings("unchecked") 858 public E next() { 859 checkForComodification(); 860 int i = cursor; 861 if (i >= size) 862 throw new NoSuchElementException(); 863 Object[] elementData = ArrayList.this.elementData; 864 if (i >= elementData.length) 865 throw new ConcurrentModificationException(); 866 cursor = i + 1; 867 return (E) elementData[lastRet = i]; 868 } 869 870 public void remove() { 871 if (lastRet < 0) 872 throw new IllegalStateException(); 873 checkForComodification(); 874 875 try { 876 ArrayList.this.remove(lastRet); 877 cursor = lastRet; 878 lastRet = -1; 879 expectedModCount = modCount; 880 } catch (IndexOutOfBoundsException ex) { 881 throw new ConcurrentModificationException(); 882 } 883 } 884 885 @Override 886 @SuppressWarnings("unchecked") 887 public void forEachRemaining(Consumer<? super E> consumer) { 888 Objects.requireNonNull(consumer); 889 final int size = ArrayList.this.size; 890 int i = cursor; 891 if (i >= size) { 892 return; 893 } 894 final Object[] elementData = ArrayList.this.elementData; 895 if (i >= elementData.length) { 896 throw new ConcurrentModificationException(); 897 } 898 while (i != size && modCount == expectedModCount) { 899 consumer.accept((E) elementData[i++]); 900 } 901 // update once at end of iteration to reduce heap write traffic 902 cursor = i; 903 lastRet = i - 1; 904 checkForComodification(); 905 } 906 907 final void checkForComodification() { 908 if (modCount != expectedModCount) 909 throw new ConcurrentModificationException(); 910 } 911 } 912 913 /** 914 * An optimized version of AbstractList.ListItr 915 */ 916 private class ListItr extends Itr implements ListIterator<E> { 917 ListItr(int index) { 918 super(); 919 cursor = index; 920 } 921 922 public boolean hasPrevious() { 923 return cursor != 0; 924 } 925 926 public int nextIndex() { 927 return cursor; 928 } 929 930 public int previousIndex() { 931 return cursor - 1; 932 } 933 934 @SuppressWarnings("unchecked") 935 public E previous() { 936 checkForComodification(); 937 int i = cursor - 1; 938 if (i < 0) 939 throw new NoSuchElementException(); 940 Object[] elementData = ArrayList.this.elementData; 941 if (i >= elementData.length) 942 throw new ConcurrentModificationException(); 943 cursor = i; 944 return (E) elementData[lastRet = i]; 945 } 946 947 public void set(E e) { 948 if (lastRet < 0) 949 throw new IllegalStateException(); 950 checkForComodification(); 951 952 try { 953 ArrayList.this.set(lastRet, e); 954 } catch (IndexOutOfBoundsException ex) { 955 throw new ConcurrentModificationException(); 956 } 957 } 958 959 public void add(E e) { 960 checkForComodification(); 961 962 try { 963 int i = cursor; 964 ArrayList.this.add(i, e); 965 cursor = i + 1; 966 lastRet = -1; 967 expectedModCount = modCount; 968 } catch (IndexOutOfBoundsException ex) { 969 throw new ConcurrentModificationException(); 970 } 971 } 972 } 973 974 /** 975 * Returns a view of the portion of this list between the specified 976 * {@code fromIndex}, inclusive, and {@code toIndex}, exclusive. (If 977 * {@code fromIndex} and {@code toIndex} are equal, the returned list is 978 * empty.) The returned list is backed by this list, so non-structural 979 * changes in the returned list are reflected in this list, and vice-versa. 980 * The returned list supports all of the optional list operations. 981 * 982 * <p>This method eliminates the need for explicit range operations (of 983 * the sort that commonly exist for arrays). Any operation that expects 984 * a list can be used as a range operation by passing a subList view 985 * instead of a whole list. For example, the following idiom 986 * removes a range of elements from a list: 987 * <pre> 988 * list.subList(from, to).clear(); 989 * </pre> 990 * Similar idioms may be constructed for {@link #indexOf(Object)} and 991 * {@link #lastIndexOf(Object)}, and all of the algorithms in the 992 * {@link Collections} class can be applied to a subList. 993 * 994 * <p>The semantics of the list returned by this method become undefined if 995 * the backing list (i.e., this list) is <i>structurally modified</i> in 996 * any way other than via the returned list. (Structural modifications are 997 * those that change the size of this list, or otherwise perturb it in such 998 * a fashion that iterations in progress may yield incorrect results.) 999 * 1000 * @throws IndexOutOfBoundsException {@inheritDoc} 1001 * @throws IllegalArgumentException {@inheritDoc} 1002 */ 1003 public List<E> subList(int fromIndex, int toIndex) { 1004 subListRangeCheck(fromIndex, toIndex, size); 1005 return new SubList(this, 0, fromIndex, toIndex); 1006 } 1007 1008 static void subListRangeCheck(int fromIndex, int toIndex, int size) { 1009 if (fromIndex < 0) 1010 throw new IndexOutOfBoundsException("fromIndex = " + fromIndex); 1011 if (toIndex > size) 1012 throw new IndexOutOfBoundsException("toIndex = " + toIndex); 1013 if (fromIndex > toIndex) 1014 throw new IllegalArgumentException("fromIndex(" + fromIndex + 1015 ") > toIndex(" + toIndex + ")"); 1016 } 1017 1018 private class SubList extends AbstractList<E> implements RandomAccess { 1019 private final AbstractList<E> parent; 1020 private final int parentOffset; 1021 private final int offset; 1022 int size; 1023 1024 SubList(AbstractList<E> parent, 1025 int offset, int fromIndex, int toIndex) { 1026 this.parent = parent; 1027 this.parentOffset = fromIndex; 1028 this.offset = offset + fromIndex; 1029 this.size = toIndex - fromIndex; 1030 this.modCount = ArrayList.this.modCount; 1031 } 1032 1033 public E set(int index, E e) { 1034 rangeCheck(index); 1035 checkForComodification(); 1036 E oldValue = ArrayList.this.elementData(offset + index); 1037 ArrayList.this.elementData[offset + index] = e; 1038 return oldValue; 1039 } 1040 1041 public E get(int index) { 1042 rangeCheck(index); 1043 checkForComodification(); 1044 return ArrayList.this.elementData(offset + index); 1045 } 1046 1047 public int size() { 1048 checkForComodification(); 1049 return this.size; 1050 } 1051 1052 public void add(int index, E e) { 1053 rangeCheckForAdd(index); 1054 checkForComodification(); 1055 parent.add(parentOffset + index, e); 1056 this.modCount = parent.modCount; 1057 this.size++; 1058 } 1059 1060 public E remove(int index) { 1061 rangeCheck(index); 1062 checkForComodification(); 1063 E result = parent.remove(parentOffset + index); 1064 this.modCount = parent.modCount; 1065 this.size--; 1066 return result; 1067 } 1068 1069 protected void removeRange(int fromIndex, int toIndex) { 1070 checkForComodification(); 1071 parent.removeRange(parentOffset + fromIndex, 1072 parentOffset + toIndex); 1073 this.modCount = parent.modCount; 1074 this.size -= toIndex - fromIndex; 1075 } 1076 1077 public boolean addAll(Collection<? extends E> c) { 1078 return addAll(this.size, c); 1079 } 1080 1081 public boolean addAll(int index, Collection<? extends E> c) { 1082 rangeCheckForAdd(index); 1083 int cSize = c.size(); 1084 if (cSize==0) 1085 return false; 1086 1087 checkForComodification(); 1088 parent.addAll(parentOffset + index, c); 1089 this.modCount = parent.modCount; 1090 this.size += cSize; 1091 return true; 1092 } 1093 1094 public Iterator<E> iterator() { 1095 return listIterator(); 1096 } 1097 1098 public ListIterator<E> listIterator(final int index) { 1099 checkForComodification(); 1100 rangeCheckForAdd(index); 1101 final int offset = this.offset; 1102 1103 return new ListIterator<E>() { 1104 int cursor = index; 1105 int lastRet = -1; 1106 int expectedModCount = ArrayList.this.modCount; 1107 1108 public boolean hasNext() { 1109 return cursor != SubList.this.size; 1110 } 1111 1112 @SuppressWarnings("unchecked") 1113 public E next() { 1114 checkForComodification(); 1115 int i = cursor; 1116 if (i >= SubList.this.size) 1117 throw new NoSuchElementException(); 1118 Object[] elementData = ArrayList.this.elementData; 1119 if (offset + i >= elementData.length) 1120 throw new ConcurrentModificationException(); 1121 cursor = i + 1; 1122 return (E) elementData[offset + (lastRet = i)]; 1123 } 1124 1125 public boolean hasPrevious() { 1126 return cursor != 0; 1127 } 1128 1129 @SuppressWarnings("unchecked") 1130 public E previous() { 1131 checkForComodification(); 1132 int i = cursor - 1; 1133 if (i < 0) 1134 throw new NoSuchElementException(); 1135 Object[] elementData = ArrayList.this.elementData; 1136 if (offset + i >= elementData.length) 1137 throw new ConcurrentModificationException(); 1138 cursor = i; 1139 return (E) elementData[offset + (lastRet = i)]; 1140 } 1141 1142 @SuppressWarnings("unchecked") 1143 public void forEachRemaining(Consumer<? super E> consumer) { 1144 Objects.requireNonNull(consumer); 1145 final int size = SubList.this.size; 1146 int i = cursor; 1147 if (i >= size) { 1148 return; 1149 } 1150 final Object[] elementData = ArrayList.this.elementData; 1151 if (offset + i >= elementData.length) { 1152 throw new ConcurrentModificationException(); 1153 } 1154 while (i != size && modCount == expectedModCount) { 1155 consumer.accept((E) elementData[offset + (i++)]); 1156 } 1157 // update once at end of iteration to reduce heap write traffic 1158 lastRet = cursor = i; 1159 checkForComodification(); 1160 } 1161 1162 public int nextIndex() { 1163 return cursor; 1164 } 1165 1166 public int previousIndex() { 1167 return cursor - 1; 1168 } 1169 1170 public void remove() { 1171 if (lastRet < 0) 1172 throw new IllegalStateException(); 1173 checkForComodification(); 1174 1175 try { 1176 SubList.this.remove(lastRet); 1177 cursor = lastRet; 1178 lastRet = -1; 1179 expectedModCount = ArrayList.this.modCount; 1180 } catch (IndexOutOfBoundsException ex) { 1181 throw new ConcurrentModificationException(); 1182 } 1183 } 1184 1185 public void set(E e) { 1186 if (lastRet < 0) 1187 throw new IllegalStateException(); 1188 checkForComodification(); 1189 1190 try { 1191 ArrayList.this.set(offset + lastRet, e); 1192 } catch (IndexOutOfBoundsException ex) { 1193 throw new ConcurrentModificationException(); 1194 } 1195 } 1196 1197 public void add(E e) { 1198 checkForComodification(); 1199 1200 try { 1201 int i = cursor; 1202 SubList.this.add(i, e); 1203 cursor = i + 1; 1204 lastRet = -1; 1205 expectedModCount = ArrayList.this.modCount; 1206 } catch (IndexOutOfBoundsException ex) { 1207 throw new ConcurrentModificationException(); 1208 } 1209 } 1210 1211 final void checkForComodification() { 1212 if (expectedModCount != ArrayList.this.modCount) 1213 throw new ConcurrentModificationException(); 1214 } 1215 }; 1216 } 1217 1218 public List<E> subList(int fromIndex, int toIndex) { 1219 subListRangeCheck(fromIndex, toIndex, size); 1220 return new SubList(this, offset, fromIndex, toIndex); 1221 } 1222 1223 private void rangeCheck(int index) { 1224 if (index < 0 || index >= this.size) 1225 throw new IndexOutOfBoundsException(outOfBoundsMsg(index)); 1226 } 1227 1228 private void rangeCheckForAdd(int index) { 1229 if (index < 0 || index > this.size) 1230 throw new IndexOutOfBoundsException(outOfBoundsMsg(index)); 1231 } 1232 1233 private String outOfBoundsMsg(int index) { 1234 return "Index: "+index+", Size: "+this.size; 1235 } 1236 1237 private void checkForComodification() { 1238 if (ArrayList.this.modCount != this.modCount) 1239 throw new ConcurrentModificationException(); 1240 } 1241 1242 public Spliterator<E> spliterator() { 1243 checkForComodification(); 1244 return new ArrayListSpliterator<E>(ArrayList.this, offset, 1245 offset + this.size, this.modCount); 1246 } 1247 } 1248 1249 @Override 1250 public void forEach(Consumer<? super E> action) { 1251 Objects.requireNonNull(action); 1252 final int expectedModCount = modCount; 1253 @SuppressWarnings("unchecked") 1254 final E[] elementData = (E[]) this.elementData; 1255 final int size = this.size; 1256 for (int i=0; modCount == expectedModCount && i < size; i++) { 1257 action.accept(elementData[i]); 1258 } 1259 if (modCount != expectedModCount) { 1260 throw new ConcurrentModificationException(); 1261 } 1262 } 1263 1264 /** 1265 * Creates a <em><a href="Spliterator.html#binding">late-binding</a></em> 1266 * and <em>fail-fast</em> {@link Spliterator} over the elements in this 1267 * list. 1268 * 1269 * <p>The {@code Spliterator} reports {@link Spliterator#SIZED}, 1270 * {@link Spliterator#SUBSIZED}, and {@link Spliterator#ORDERED}. 1271 * Overriding implementations should document the reporting of additional 1272 * characteristic values. 1273 * 1274 * @return a {@code Spliterator} over the elements in this list 1275 * @since 1.8 1276 */ 1277 @Override 1278 public Spliterator<E> spliterator() { 1279 return new ArrayListSpliterator<>(this, 0, -1, 0); 1280 } 1281 1282 /** Index-based split-by-two, lazily initialized Spliterator */ 1283 static final class ArrayListSpliterator<E> implements Spliterator<E> { 1284 1285 /* 1286 * If ArrayLists were immutable, or structurally immutable (no 1287 * adds, removes, etc), we could implement their spliterators 1288 * with Arrays.spliterator. Instead we detect as much 1289 * interference during traversal as practical without 1290 * sacrificing much performance. We rely primarily on 1291 * modCounts. These are not guaranteed to detect concurrency 1292 * violations, and are sometimes overly conservative about 1293 * within-thread interference, but detect enough problems to 1294 * be worthwhile in practice. To carry this out, we (1) lazily 1295 * initialize fence and expectedModCount until the latest 1296 * point that we need to commit to the state we are checking 1297 * against; thus improving precision. (This doesn't apply to 1298 * SubLists, that create spliterators with current non-lazy 1299 * values). (2) We perform only a single 1300 * ConcurrentModificationException check at the end of forEach 1301 * (the most performance-sensitive method). When using forEach 1302 * (as opposed to iterators), we can normally only detect 1303 * interference after actions, not before. Further 1304 * CME-triggering checks apply to all other possible 1305 * violations of assumptions for example null or too-small 1306 * elementData array given its size(), that could only have 1307 * occurred due to interference. This allows the inner loop 1308 * of forEach to run without any further checks, and 1309 * simplifies lambda-resolution. While this does entail a 1310 * number of checks, note that in the common case of 1311 * list.stream().forEach(a), no checks or other computation 1312 * occur anywhere other than inside forEach itself. The other 1313 * less-often-used methods cannot take advantage of most of 1314 * these streamlinings. 1315 */ 1316 1317 private final ArrayList<E> list; 1318 private int index; // current index, modified on advance/split 1319 private int fence; // -1 until used; then one past last index 1320 private int expectedModCount; // initialized when fence set 1321 1322 /** Create new spliterator covering the given range */ 1323 ArrayListSpliterator(ArrayList<E> list, int origin, int fence, 1324 int expectedModCount) { 1325 this.list = list; // OK if null unless traversed 1326 this.index = origin; 1327 this.fence = fence; 1328 this.expectedModCount = expectedModCount; 1329 } 1330 1331 private int getFence() { // initialize fence to size on first use 1332 int hi; // (a specialized variant appears in method forEach) 1333 ArrayList<E> lst; 1334 if ((hi = fence) < 0) { 1335 if ((lst = list) == null) 1336 hi = fence = 0; 1337 else { 1338 expectedModCount = lst.modCount; 1339 hi = fence = lst.size; 1340 } 1341 } 1342 return hi; 1343 } 1344 1345 public ArrayListSpliterator<E> trySplit() { 1346 int hi = getFence(), lo = index, mid = (lo + hi) >>> 1; 1347 return (lo >= mid) ? null : // divide range in half unless too small 1348 new ArrayListSpliterator<E>(list, lo, index = mid, 1349 expectedModCount); 1350 } 1351 1352 public boolean tryAdvance(Consumer<? super E> action) { 1353 if (action == null) 1354 throw new NullPointerException(); 1355 int hi = getFence(), i = index; 1356 if (i < hi) { 1357 index = i + 1; 1358 @SuppressWarnings("unchecked") E e = (E)list.elementData[i]; 1359 action.accept(e); 1360 if (list.modCount != expectedModCount) 1361 throw new ConcurrentModificationException(); 1362 return true; 1363 } 1364 return false; 1365 } 1366 1367 public void forEachRemaining(Consumer<? super E> action) { 1368 int i, hi, mc; // hoist accesses and checks from loop 1369 ArrayList<E> lst; Object[] a; 1370 if (action == null) 1371 throw new NullPointerException(); 1372 if ((lst = list) != null && (a = lst.elementData) != null) { 1373 if ((hi = fence) < 0) { 1374 mc = lst.modCount; 1375 hi = lst.size; 1376 } 1377 else 1378 mc = expectedModCount; 1379 if ((i = index) >= 0 && (index = hi) <= a.length) { 1380 for (; i < hi; ++i) { 1381 @SuppressWarnings("unchecked") E e = (E) a[i]; 1382 action.accept(e); 1383 } 1384 if (lst.modCount == mc) 1385 return; 1386 } 1387 } 1388 throw new ConcurrentModificationException(); 1389 } 1390 1391 public long estimateSize() { 1392 return (long) (getFence() - index); 1393 } 1394 1395 public int characteristics() { 1396 return Spliterator.ORDERED | Spliterator.SIZED | Spliterator.SUBSIZED; 1397 } 1398 } 1399 1400 @Override 1401 public boolean removeIf(Predicate<? super E> filter) { 1402 Objects.requireNonNull(filter); 1403 // figure out which elements are to be removed 1404 // any exception thrown from the filter predicate at this stage 1405 // will leave the collection unmodified 1406 int removeCount = 0; 1407 final BitSet removeSet = new BitSet(size); 1408 final int expectedModCount = modCount; 1409 final int size = this.size; 1410 for (int i=0; modCount == expectedModCount && i < size; i++) { 1411 @SuppressWarnings("unchecked") 1412 final E element = (E) elementData[i]; 1413 if (filter.test(element)) { 1414 removeSet.set(i); 1415 removeCount++; 1416 } 1417 } 1418 if (modCount != expectedModCount) { 1419 throw new ConcurrentModificationException(); 1420 } 1421 1422 // shift surviving elements left over the spaces left by removed elements 1423 final boolean anyToRemove = removeCount > 0; 1424 if (anyToRemove) { 1425 final int newSize = size - removeCount; 1426 for (int i=0, j=0; (i < size) && (j < newSize); i++, j++) { 1427 i = removeSet.nextClearBit(i); 1428 elementData[j] = elementData[i]; 1429 } 1430 for (int k=newSize; k < size; k++) { 1431 elementData[k] = null; // Let gc do its work 1432 } 1433 this.size = newSize; 1434 if (modCount != expectedModCount) { 1435 throw new ConcurrentModificationException(); 1436 } 1437 modCount++; 1438 } 1439 1440 return anyToRemove; 1441 } 1442 1443 @Override 1444 @SuppressWarnings("unchecked") 1445 public void replaceAll(UnaryOperator<E> operator) { 1446 Objects.requireNonNull(operator); 1447 final int expectedModCount = modCount; 1448 final int size = this.size; 1449 for (int i=0; modCount == expectedModCount && i < size; i++) { 1450 elementData[i] = operator.apply((E) elementData[i]); 1451 } 1452 if (modCount != expectedModCount) { 1453 throw new ConcurrentModificationException(); 1454 } 1455 modCount++; 1456 } 1457 1458 @Override 1459 @SuppressWarnings("unchecked") 1460 public void sort(Comparator<? super E> c) { 1461 final int expectedModCount = modCount; 1462 Arrays.sort((E[]) elementData, 0, size, c); 1463 if (modCount != expectedModCount) { 1464 throw new ConcurrentModificationException(); 1465 } 1466 modCount++; 1467 } 1468 }

?

轉載于:https://www.cnblogs.com/yangzihong/p/10122341.html

總結

以上是生活随笔為你收集整理的ArrayList add(int index,E element)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

国产超级va在线观看视频 | 欧美35页视频在线观看 | 亚洲精品一区二区三区婷婷月 | 四虎影视成人永久免费观看视频 | 精品人妻中文字幕有码在线 | 久久天天躁狠狠躁夜夜免费观看 | 色狠狠av一区二区三区 | 欧美高清在线精品一区 | 色窝窝无码一区二区三区色欲 | 中文字幕无线码免费人妻 | 久久99精品久久久久久 | 国内精品久久久久久中文字幕 | 中文字幕人妻无码一夲道 | 亚洲色成人中文字幕网站 | 中文字幕亚洲情99在线 | 99久久人妻精品免费一区 | 国产亚洲欧美在线专区 | 2020久久香蕉国产线看观看 | 亚洲色在线无码国产精品不卡 | 特黄特色大片免费播放器图片 | 无码人妻丰满熟妇区五十路百度 | 国产精品久久国产三级国 | 日韩精品无码免费一区二区三区 | 大肉大捧一进一出好爽视频 | 久久国产精品二国产精品 | 亚洲精品久久久久久一区二区 | 精品午夜福利在线观看 | 美女张开腿让人桶 | 51国偷自产一区二区三区 | 免费男性肉肉影院 | 久久无码中文字幕免费影院蜜桃 | 国产亚洲人成a在线v网站 | 国内精品一区二区三区不卡 | 亚洲午夜福利在线观看 | 我要看www免费看插插视频 | 成人性做爰aaa片免费看 | 国产精品久久久久久久影院 | 日韩精品无码一区二区中文字幕 | 东京热一精品无码av | 亚洲熟妇色xxxxx欧美老妇 | 国产乱码精品一品二品 | 国产精品二区一区二区aⅴ污介绍 | 国产高清av在线播放 | 亚洲熟熟妇xxxx | 欧美一区二区三区视频在线观看 | 亚洲中文字幕成人无码 | 国产激情艳情在线看视频 | 老头边吃奶边弄进去呻吟 | 无码播放一区二区三区 | 免费网站看v片在线18禁无码 | 九九久久精品国产免费看小说 | 无码人妻久久一区二区三区不卡 | 国内精品久久久久久中文字幕 | 国产美女极度色诱视频www | 午夜熟女插插xx免费视频 | 国产9 9在线 | 中文 | 国产一区二区三区精品视频 | 99麻豆久久久国产精品免费 | 无码一区二区三区在线观看 | 国产无遮挡又黄又爽又色 | 日本丰满熟妇videos | 国产精品久久久久久亚洲毛片 | 中文字幕无码热在线视频 | 久久精品人人做人人综合试看 | 中文精品无码中文字幕无码专区 | 在线播放亚洲第一字幕 | 荡女精品导航 | 大地资源中文第3页 | 国产人妻精品一区二区三区 | 国产av无码专区亚洲awww | 国产亚洲欧美在线专区 | 中文精品无码中文字幕无码专区 | 久久久久久久人妻无码中文字幕爆 | 欧美 日韩 人妻 高清 中文 | 俺去俺来也在线www色官网 | 亚洲男人av天堂午夜在 | 综合人妻久久一区二区精品 | 丝袜足控一区二区三区 | 成人女人看片免费视频放人 | 久久久久免费看成人影片 | 性生交片免费无码看人 | 一本久道久久综合狠狠爱 | 亚洲一区二区三区在线观看网站 | 宝宝好涨水快流出来免费视频 | 亚洲精品国偷拍自产在线观看蜜桃 | 美女黄网站人色视频免费国产 | 无码免费一区二区三区 | 国产办公室秘书无码精品99 | 国产高清av在线播放 | 国产黄在线观看免费观看不卡 | 亚洲乱码国产乱码精品精 | 色综合久久久无码中文字幕 | 国产精品成人av在线观看 | 欧美激情综合亚洲一二区 | 美女毛片一区二区三区四区 | 亚洲一区二区三区播放 | 亚洲欧洲中文日韩av乱码 | 蜜桃av蜜臀av色欲av麻 999久久久国产精品消防器材 | 人人妻人人澡人人爽人人精品 | 精品人妻中文字幕有码在线 | 欧美熟妇另类久久久久久多毛 | 乌克兰少妇性做爰 | 东京热一精品无码av | 欧美成人免费全部网站 | 亚洲一区二区三区偷拍女厕 | 色妞www精品免费视频 | 国产av无码专区亚洲a∨毛片 | 国产精品人人爽人人做我的可爱 | 国产精品国产三级国产专播 | 亚洲欧美精品aaaaaa片 | 日本护士xxxxhd少妇 | 久久国语露脸国产精品电影 | 国产激情精品一区二区三区 | 丰满妇女强制高潮18xxxx | 国产午夜精品一区二区三区嫩草 | 人人妻人人澡人人爽精品欧美 | 国产av一区二区三区最新精品 | 无码人妻精品一区二区三区下载 | yw尤物av无码国产在线观看 | 青春草在线视频免费观看 | 日欧一片内射va在线影院 | 国产精品无码永久免费888 | 欧美亚洲日韩国产人成在线播放 | 九月婷婷人人澡人人添人人爽 | 国产成人一区二区三区在线观看 | 超碰97人人射妻 | 好男人社区资源 | 老太婆性杂交欧美肥老太 | 国产综合色产在线精品 | 亚洲精品中文字幕 | 亚洲人成影院在线无码按摩店 | 日韩av无码一区二区三区 | 99久久精品国产一区二区蜜芽 | 狠狠色欧美亚洲狠狠色www | 国产农村妇女aaaaa视频 撕开奶罩揉吮奶头视频 | 国产亚洲欧美日韩亚洲中文色 | 午夜丰满少妇性开放视频 | 狠狠cao日日穞夜夜穞av | 娇妻被黑人粗大高潮白浆 | 成人免费视频视频在线观看 免费 | 无码乱肉视频免费大全合集 | 水蜜桃色314在线观看 | 国产精品.xx视频.xxtv | 日日天日日夜日日摸 | 国产人妻久久精品二区三区老狼 | 久久99精品久久久久久 | 人人妻在人人 | 三级4级全黄60分钟 | 玩弄少妇高潮ⅹxxxyw | 久久午夜无码鲁丝片秋霞 | 人人超人人超碰超国产 | 丰满护士巨好爽好大乳 | 一二三四在线观看免费视频 | 国内揄拍国内精品少妇国语 | 狂野欧美性猛交免费视频 | 国内综合精品午夜久久资源 | 天堂一区人妻无码 | 人人爽人人爽人人片av亚洲 | 国产免费久久精品国产传媒 | 国产亚洲精品久久久久久 | 青青久在线视频免费观看 | 欧美 日韩 亚洲 在线 | 久久精品国产一区二区三区肥胖 | 久久久久成人精品免费播放动漫 | 精品久久综合1区2区3区激情 | 成 人 免费观看网站 | √天堂中文官网8在线 | 亚洲欧洲日本无在线码 | www国产精品内射老师 | 国内精品九九久久久精品 | 欧美成人午夜精品久久久 | 2019nv天堂香蕉在线观看 | 国产av剧情md精品麻豆 | 亚洲精品一区国产 | 国产极品美女高潮无套在线观看 | 国产精品无码久久av | 久久无码专区国产精品s | 成人无码影片精品久久久 | 国产精品久久国产三级国 | 扒开双腿疯狂进出爽爽爽视频 | 鲁大师影院在线观看 | 日产精品99久久久久久 | 国产亚洲精品久久久闺蜜 | 久久www免费人成人片 | 欧美日韩综合一区二区三区 | 中文字幕无码乱人伦 | 亚洲日本一区二区三区在线 | 无码人妻少妇伦在线电影 | 国内精品久久久久久中文字幕 | 精品无码国产一区二区三区av | 精品国产av色一区二区深夜久久 | 成熟女人特级毛片www免费 | 超碰97人人做人人爱少妇 | 亚洲 日韩 欧美 成人 在线观看 | 亚洲精品国产精品乱码不卡 | 丰满少妇熟乱xxxxx视频 | 福利一区二区三区视频在线观看 | 免费无码午夜福利片69 | 欧美亚洲日韩国产人成在线播放 | 欧美三级不卡在线观看 | 国产麻豆精品精东影业av网站 | 97久久国产亚洲精品超碰热 | 成熟妇人a片免费看网站 | 粗大的内捧猛烈进出视频 | 成人三级无码视频在线观看 | 精品国产成人一区二区三区 | 亚洲国产欧美日韩精品一区二区三区 | 亚洲熟女一区二区三区 | 真人与拘做受免费视频 | 国产超级va在线观看视频 | 欧美黑人巨大xxxxx | 亚洲大尺度无码无码专区 | 国产另类ts人妖一区二区 | 免费国产黄网站在线观看 | 久久这里只有精品视频9 | 成人精品一区二区三区中文字幕 | 国产小呦泬泬99精品 | 欧美午夜特黄aaaaaa片 | 无码人妻黑人中文字幕 | 欧美 亚洲 国产 另类 | 无码乱肉视频免费大全合集 | 中文字幕乱妇无码av在线 | 在线а√天堂中文官网 | 国产xxx69麻豆国语对白 | 丰满岳乱妇在线观看中字无码 | 日本精品久久久久中文字幕 | 亚洲一区二区三区香蕉 | 女人被男人爽到呻吟的视频 | 台湾无码一区二区 | 日韩无套无码精品 | 国产精品资源一区二区 | 国产va免费精品观看 | av人摸人人人澡人人超碰下载 | 亚洲精品久久久久中文第一幕 | 亚洲成熟女人毛毛耸耸多 | 国产成人无码午夜视频在线观看 | 国产亚av手机在线观看 | 精品久久久久久人妻无码中文字幕 | 乱码午夜-极国产极内射 | 久久综合狠狠综合久久综合88 | 欧美激情内射喷水高潮 | 国产国产精品人在线视 | 18禁黄网站男男禁片免费观看 | 日本免费一区二区三区最新 | 扒开双腿疯狂进出爽爽爽视频 | 伊人久久大香线蕉亚洲 | 男女下面进入的视频免费午夜 | 国产亚洲欧美在线专区 | a片在线免费观看 | 色 综合 欧美 亚洲 国产 | 国产午夜亚洲精品不卡 | 99久久精品午夜一区二区 | 久久www免费人成人片 | 日日噜噜噜噜夜夜爽亚洲精品 | 亚洲国产成人av在线观看 | 久久午夜无码鲁丝片午夜精品 | 天堂亚洲2017在线观看 | 欧美成人午夜精品久久久 | 精品人人妻人人澡人人爽人人 | 无码人妻出轨黑人中文字幕 | 一区二区三区高清视频一 | 久久久婷婷五月亚洲97号色 | 大肉大捧一进一出视频出来呀 | 自拍偷自拍亚洲精品被多人伦好爽 | 中文字幕无码av激情不卡 | 全黄性性激高免费视频 | 日本乱人伦片中文三区 | 亚洲色偷偷男人的天堂 | 中文精品无码中文字幕无码专区 | 国产成人精品优优av | 丝袜人妻一区二区三区 | 亚洲欧洲日本综合aⅴ在线 | 欧美日韩一区二区免费视频 | 人妻少妇精品视频专区 | 色诱久久久久综合网ywww | 久久天天躁夜夜躁狠狠 | 人妻尝试又大又粗久久 | 精品国产青草久久久久福利 | 亚洲中文字幕久久无码 | 玩弄人妻少妇500系列视频 | 国产精品鲁鲁鲁 | 久久视频在线观看精品 | 俄罗斯老熟妇色xxxx | 国产深夜福利视频在线 | 丝袜足控一区二区三区 | 成人免费视频一区二区 | 高清无码午夜福利视频 | 四十如虎的丰满熟妇啪啪 | 蜜桃视频插满18在线观看 | 中文亚洲成a人片在线观看 | 欧美日本免费一区二区三区 | 男女作爱免费网站 | 亚洲精品久久久久中文第一幕 | av人摸人人人澡人人超碰下载 | 亚洲精品无码人妻无码 | 精品久久久久香蕉网 | 国产三级久久久精品麻豆三级 | 国产97在线 | 亚洲 | 国产农村妇女aaaaa视频 撕开奶罩揉吮奶头视频 | 无码精品国产va在线观看dvd | 国产亚洲日韩欧美另类第八页 | 熟妇人妻无码xxx视频 | 无码精品国产va在线观看dvd | 人人爽人人爽人人片av亚洲 | 激情亚洲一区国产精品 | 高中生自慰www网站 | 国产精品igao视频网 | 国产偷抇久久精品a片69 | 日韩成人一区二区三区在线观看 | 少妇一晚三次一区二区三区 | 国内丰满熟女出轨videos | 亚洲无人区午夜福利码高清完整版 | 免费国产黄网站在线观看 | 乱人伦人妻中文字幕无码 | 三上悠亚人妻中文字幕在线 | 久久久久99精品成人片 | 人人妻人人澡人人爽人人精品浪潮 | 久久亚洲日韩精品一区二区三区 | 欧美日韩综合一区二区三区 | 久久99精品久久久久久动态图 | 小sao货水好多真紧h无码视频 | 日韩av无码中文无码电影 | 久久亚洲a片com人成 | 亚洲综合伊人久久大杳蕉 | 日日噜噜噜噜夜夜爽亚洲精品 | 久久久久免费精品国产 | 亚洲无人区午夜福利码高清完整版 | 久久亚洲日韩精品一区二区三区 | 精品国产乱码久久久久乱码 | 中文字幕色婷婷在线视频 | 国产精品久久国产三级国 | 精品欧洲av无码一区二区三区 | 国产精品永久免费视频 | 亚洲日本一区二区三区在线 | 奇米影视888欧美在线观看 | 精品久久久无码人妻字幂 | 国产在线无码精品电影网 | 无码免费一区二区三区 | 97精品国产97久久久久久免费 | 国产午夜精品一区二区三区嫩草 | 久久久亚洲欧洲日产国码αv | 国产av无码专区亚洲awww | 日韩欧美群交p片內射中文 | 狠狠亚洲超碰狼人久久 | 老司机亚洲精品影院 | 亚洲成在人网站无码天堂 | 成人无码精品一区二区三区 | 内射老妇bbwx0c0ck | 国产色在线 | 国产 | 亚洲日本va中文字幕 | 东北女人啪啪对白 | 久久久久久a亚洲欧洲av冫 | 55夜色66夜色国产精品视频 | 日本熟妇大屁股人妻 | 国产免费无码一区二区视频 | 成人精品一区二区三区中文字幕 | 亚洲精品久久久久久一区二区 | 午夜精品一区二区三区在线观看 | 日本一区二区三区免费高清 | 国产凸凹视频一区二区 | 99国产欧美久久久精品 | 国产精品二区一区二区aⅴ污介绍 | 国产免费久久久久久无码 | 一个人看的www免费视频在线观看 | 亚洲aⅴ无码成人网站国产app | 久久99精品久久久久久动态图 | 亚洲s码欧洲m码国产av | 无码av中文字幕免费放 | 88国产精品欧美一区二区三区 | 国产sm调教视频在线观看 | 免费乱码人妻系列无码专区 | 国产凸凹视频一区二区 | 亚无码乱人伦一区二区 | 亚洲一区二区三区无码久久 | 精品夜夜澡人妻无码av蜜桃 | 又湿又紧又大又爽a视频国产 | a片在线免费观看 | 激情亚洲一区国产精品 | 亚洲精品一区二区三区大桥未久 | 人妻人人添人妻人人爱 | 国产肉丝袜在线观看 | 久久综合久久自在自线精品自 | 天天摸天天碰天天添 | 夜先锋av资源网站 | 国产婷婷色一区二区三区在线 | 国产又爽又猛又粗的视频a片 | 国内精品人妻无码久久久影院蜜桃 | 日本精品人妻无码77777 天堂一区人妻无码 | 免费人成网站视频在线观看 | 任你躁在线精品免费 | 激情五月综合色婷婷一区二区 | 秋霞成人午夜鲁丝一区二区三区 | 亚洲另类伦春色综合小说 | 好屌草这里只有精品 | 好屌草这里只有精品 | 人人妻人人澡人人爽欧美一区 | 午夜熟女插插xx免费视频 | 蜜桃视频插满18在线观看 | 国产疯狂伦交大片 | 国产人妖乱国产精品人妖 | 麻豆国产人妻欲求不满 | 精品一区二区不卡无码av | 人妻中文无码久热丝袜 | 老熟女乱子伦 | 青青青手机频在线观看 | 无码人妻丰满熟妇区五十路百度 | 天天综合网天天综合色 | 国产成人午夜福利在线播放 | 天堂а√在线中文在线 | 国产精品a成v人在线播放 | 国产乱子伦视频在线播放 | 久久久久久国产精品无码下载 | 亚洲啪av永久无码精品放毛片 | 精品国产一区二区三区四区在线看 | 中文字幕色婷婷在线视频 | 精品人妻中文字幕有码在线 | 亚洲人成无码网www | 亚洲中文字幕乱码av波多ji | 久久人妻内射无码一区三区 | 人妻无码αv中文字幕久久琪琪布 | 97se亚洲精品一区 | 国产一区二区三区四区五区加勒比 | 欧美性猛交内射兽交老熟妇 | 日韩无套无码精品 | 强伦人妻一区二区三区视频18 | 在线精品亚洲一区二区 | 精品一区二区三区无码免费视频 | 国精产品一品二品国精品69xx | 国产精品va在线观看无码 | 日韩亚洲欧美中文高清在线 | 丰满少妇弄高潮了www | 东京无码熟妇人妻av在线网址 | 色五月五月丁香亚洲综合网 | 亚洲午夜福利在线观看 | 天堂а√在线地址中文在线 | 国产人妻久久精品二区三区老狼 | 久久久久免费看成人影片 | 国产偷自视频区视频 | 日本乱偷人妻中文字幕 | 欧美第一黄网免费网站 | 国产在线精品一区二区三区直播 | 国产成人精品三级麻豆 | 欧美日韩在线亚洲综合国产人 | 日日躁夜夜躁狠狠躁 | 国产精品99爱免费视频 | 女人和拘做爰正片视频 | 宝宝好涨水快流出来免费视频 | 免费播放一区二区三区 | 天天躁夜夜躁狠狠是什么心态 | 亚洲啪av永久无码精品放毛片 | 99精品国产综合久久久久五月天 | 亚洲一区二区三区四区 | 中文毛片无遮挡高清免费 | 久久久亚洲欧洲日产国码αv | 无码av岛国片在线播放 | 日日摸夜夜摸狠狠摸婷婷 | 美女黄网站人色视频免费国产 | 少妇的肉体aa片免费 | 亚洲一区二区三区四区 | 免费国产黄网站在线观看 | 天天躁夜夜躁狠狠是什么心态 | 精品国产福利一区二区 | 男人的天堂2018无码 | 丰满人妻被黑人猛烈进入 | 小泽玛莉亚一区二区视频在线 | 女人被男人躁得好爽免费视频 | 亚洲综合在线一区二区三区 | 中文字幕无码av激情不卡 | 国内揄拍国内精品人妻 | 精品国精品国产自在久国产87 | 漂亮人妻洗澡被公强 日日躁 | 日韩精品无码一区二区中文字幕 | 日本一区二区三区免费播放 | 无码精品国产va在线观看dvd | 日韩欧美中文字幕公布 | 无码人妻丰满熟妇区五十路百度 | 荫蒂被男人添的好舒服爽免费视频 | 妺妺窝人体色www婷婷 | 国产色xx群视频射精 | 免费人成网站视频在线观看 | 小鲜肉自慰网站xnxx | 曰韩无码二三区中文字幕 | 国产精品久久久久无码av色戒 | aⅴ亚洲 日韩 色 图网站 播放 | 亚洲热妇无码av在线播放 | 久久精品国产一区二区三区 | 亚洲欧美中文字幕5发布 | 国产超级va在线观看视频 | 曰韩少妇内射免费播放 | 老熟女重囗味hdxx69 | yw尤物av无码国产在线观看 | 亚洲啪av永久无码精品放毛片 | 国产在线精品一区二区高清不卡 | 大乳丰满人妻中文字幕日本 | 狠狠躁日日躁夜夜躁2020 | 国产精品亚洲а∨无码播放麻豆 | 成 人 免费观看网站 | 亚洲乱码国产乱码精品精 | 亚洲欧洲日本无在线码 | 人妻aⅴ无码一区二区三区 | 亚洲乱码日产精品bd | 久久综合激激的五月天 | 丰满岳乱妇在线观看中字无码 | 粉嫩少妇内射浓精videos | 久久综合激激的五月天 | 性欧美牲交在线视频 | 亚洲欧美色中文字幕在线 | 日日摸天天摸爽爽狠狠97 | 老熟妇乱子伦牲交视频 | 午夜丰满少妇性开放视频 | 成人免费视频在线观看 | 色情久久久av熟女人妻网站 | 成 人影片 免费观看 | 亚洲欧洲日本综合aⅴ在线 | 国产成人无码午夜视频在线观看 | 国产口爆吞精在线视频 | 99久久99久久免费精品蜜桃 | 男女下面进入的视频免费午夜 | www国产亚洲精品久久久日本 | 成人影院yy111111在线观看 | 久久国产精品精品国产色婷婷 | 国产麻豆精品一区二区三区v视界 | 丁香啪啪综合成人亚洲 | 国产精品人人妻人人爽 | 18黄暴禁片在线观看 | 久久久精品欧美一区二区免费 | 亚洲精品无码人妻无码 | 日韩在线不卡免费视频一区 | 久久精品人妻少妇一区二区三区 | 久久亚洲日韩精品一区二区三区 | 日产精品高潮呻吟av久久 | 天天av天天av天天透 | 欧美一区二区三区 | 久久精品国产精品国产精品污 | 无套内谢老熟女 | 国产免费久久精品国产传媒 | 国产av无码专区亚洲awww | 蜜桃无码一区二区三区 | 国产后入清纯学生妹 | 一本大道久久东京热无码av | 漂亮人妻洗澡被公强 日日躁 | 亚洲啪av永久无码精品放毛片 | 国产av一区二区三区最新精品 | 亚洲欧美中文字幕5发布 | 国产97在线 | 亚洲 | 国产精品久久久久7777 | 18黄暴禁片在线观看 | 无码人妻黑人中文字幕 | 丰满妇女强制高潮18xxxx | 欧美三级不卡在线观看 | 思思久久99热只有频精品66 | 亚洲va欧美va天堂v国产综合 | 日本精品久久久久中文字幕 | 国产成人精品必看 | 狂野欧美性猛xxxx乱大交 | 午夜精品一区二区三区在线观看 | 精品厕所偷拍各类美女tp嘘嘘 | 男人和女人高潮免费网站 | 国内精品人妻无码久久久影院蜜桃 | 亚洲精品一区二区三区在线观看 | 欧美自拍另类欧美综合图片区 | 亚洲成在人网站无码天堂 | 亚洲乱码中文字幕在线 | 少妇太爽了在线观看 | 日韩在线不卡免费视频一区 | 免费男性肉肉影院 | 日本一区二区三区免费播放 | 国产成人无码午夜视频在线观看 | 亚洲欧美日韩综合久久久 | 亚洲国产精品无码一区二区三区 | 人人妻人人澡人人爽人人精品 | 免费人成在线观看网站 | 欧洲熟妇精品视频 | 377p欧洲日本亚洲大胆 | 成人欧美一区二区三区黑人免费 | 久久国产精品萌白酱免费 | 亚洲国产欧美国产综合一区 | 国产亚洲精品久久久ai换 | 久久久久久久久蜜桃 | 一本加勒比波多野结衣 | 亚洲综合无码久久精品综合 | 无码一区二区三区在线 | 奇米影视7777久久精品人人爽 | 高清不卡一区二区三区 | 中文字幕久久久久人妻 | 中文久久乱码一区二区 | 无码纯肉视频在线观看 | 日韩精品无码免费一区二区三区 | 正在播放老肥熟妇露脸 | 久久综合九色综合97网 | 97人妻精品一区二区三区 | 55夜色66夜色国产精品视频 | 亚洲国产精品久久久久久 | av人摸人人人澡人人超碰下载 | 性欧美大战久久久久久久 | 无码一区二区三区在线观看 | 天天拍夜夜添久久精品 | 免费国产成人高清在线观看网站 | 国产无遮挡又黄又爽又色 | 亚洲男人av天堂午夜在 | 国产人妻人伦精品1国产丝袜 | 无码人妻精品一区二区三区下载 | 亚洲 激情 小说 另类 欧美 | 中文字幕亚洲情99在线 | 妺妺窝人体色www婷婷 | 撕开奶罩揉吮奶头视频 | 欧美日韩综合一区二区三区 | 婷婷丁香五月天综合东京热 | 免费男性肉肉影院 | 日本丰满护士爆乳xxxx | 欧美日韩一区二区综合 | 波多野结衣av一区二区全免费观看 | 99久久精品午夜一区二区 | 特级做a爰片毛片免费69 | 亚洲色成人中文字幕网站 | 少妇被粗大的猛进出69影院 | 老熟女重囗味hdxx69 | 成人无码影片精品久久久 | 国产精品第一区揄拍无码 | 国产色视频一区二区三区 | 女人被爽到呻吟gif动态图视看 | 天天综合网天天综合色 | 沈阳熟女露脸对白视频 | 一二三四社区在线中文视频 | 久久亚洲国产成人精品性色 | 久久五月精品中文字幕 | 中文字幕+乱码+中文字幕一区 | 亚洲精品成人av在线 | 精品久久久久久亚洲精品 | 国产精品国产三级国产专播 | 欧美野外疯狂做受xxxx高潮 | 四虎国产精品一区二区 | 丰满人妻被黑人猛烈进入 | 天堂一区人妻无码 | 欧美日韩在线亚洲综合国产人 | 欧美成人午夜精品久久久 | 四虎永久在线精品免费网址 | 中文字幕无码乱人伦 | 在线а√天堂中文官网 | 无码一区二区三区在线观看 | 久久久精品欧美一区二区免费 | 亚洲色成人中文字幕网站 | 亚洲一区二区三区无码久久 | 国产亚av手机在线观看 | 欧美色就是色 | 日本爽爽爽爽爽爽在线观看免 | 给我免费的视频在线观看 | 国产精品久久久久7777 | 一本久道高清无码视频 | 欧美肥老太牲交大战 | 女高中生第一次破苞av | 国产精品爱久久久久久久 | 黑人粗大猛烈进出高潮视频 | 日本丰满护士爆乳xxxx | 亚洲综合在线一区二区三区 | 国产小呦泬泬99精品 | 在线观看免费人成视频 | 国产亚洲tv在线观看 | 中文字幕无码视频专区 | 天堂亚洲免费视频 | 久久成人a毛片免费观看网站 | 天干天干啦夜天干天2017 | 欧美黑人乱大交 | 99久久99久久免费精品蜜桃 | 四虎国产精品免费久久 | 亚洲精品国产精品乱码不卡 | 免费人成网站视频在线观看 | 妺妺窝人体色www在线小说 | 丰满人妻一区二区三区免费视频 | 嫩b人妻精品一区二区三区 | 综合人妻久久一区二区精品 | 少妇的肉体aa片免费 | 日日麻批免费40分钟无码 | 扒开双腿疯狂进出爽爽爽视频 | 婷婷综合久久中文字幕蜜桃三电影 | 亚洲男女内射在线播放 | 午夜男女很黄的视频 | 一个人看的www免费视频在线观看 | 99久久99久久免费精品蜜桃 | 一本久久a久久精品vr综合 | 国产精品二区一区二区aⅴ污介绍 | 久久亚洲精品中文字幕无男同 | 熟女俱乐部五十路六十路av | 亚洲精品综合一区二区三区在线 | 国产精品第一区揄拍无码 | 亚洲色大成网站www | 娇妻被黑人粗大高潮白浆 | 又大又硬又黄的免费视频 | 乌克兰少妇xxxx做受 | 成人aaa片一区国产精品 | 在线精品国产一区二区三区 | 日韩视频 中文字幕 视频一区 | 大色综合色综合网站 | 久久伊人色av天堂九九小黄鸭 | 免费观看激色视频网站 | 性开放的女人aaa片 | 噜噜噜亚洲色成人网站 | 亚洲 日韩 欧美 成人 在线观看 | 台湾无码一区二区 | 国产成人无码专区 | 成人无码视频在线观看网站 | 亚洲男女内射在线播放 | 亚洲热妇无码av在线播放 | 日韩av无码中文无码电影 | 无码国产色欲xxxxx视频 | 色婷婷av一区二区三区之红樱桃 | 国内综合精品午夜久久资源 | 精品国产青草久久久久福利 | 亚洲日韩乱码中文无码蜜桃臀网站 | 国产激情精品一区二区三区 | 少妇高潮喷潮久久久影院 | 日欧一片内射va在线影院 | 免费人成在线观看网站 | 在线观看欧美一区二区三区 | 欧美日韩视频无码一区二区三 | 日日噜噜噜噜夜夜爽亚洲精品 | 久久午夜夜伦鲁鲁片无码免费 | 国内精品人妻无码久久久影院 | 亚洲日韩av一区二区三区四区 | 亚洲 另类 在线 欧美 制服 | 久久人妻内射无码一区三区 | 人人妻在人人 | 欧美 日韩 人妻 高清 中文 | 亚洲精品一区二区三区四区五区 | 天堂а√在线地址中文在线 | 亚洲日韩一区二区 | aⅴ在线视频男人的天堂 | 亚洲 激情 小说 另类 欧美 | 亚洲中文字幕av在天堂 | 人人妻人人澡人人爽欧美一区 | 国产麻豆精品精东影业av网站 | 久久精品国产大片免费观看 | 人人澡人摸人人添 | 亚洲日韩av一区二区三区中文 | 精品无人区无码乱码毛片国产 | 女高中生第一次破苞av | 亚洲国产欧美日韩精品一区二区三区 | 久久视频在线观看精品 | 成人无码视频免费播放 | 久久精品99久久香蕉国产色戒 | 西西人体www44rt大胆高清 | 欧美刺激性大交 | 久久亚洲中文字幕无码 | 夜精品a片一区二区三区无码白浆 | 日本熟妇乱子伦xxxx | 未满小14洗澡无码视频网站 | 日韩人妻无码中文字幕视频 | 国产色xx群视频射精 | 日本大乳高潮视频在线观看 | 99久久久无码国产精品免费 | 在线播放亚洲第一字幕 | 国产亚洲人成在线播放 | 天干天干啦夜天干天2017 | 国产三级精品三级男人的天堂 | 日韩精品乱码av一区二区 | 亚洲区欧美区综合区自拍区 | 亚洲码国产精品高潮在线 | 精品偷自拍另类在线观看 | 久激情内射婷内射蜜桃人妖 | 夜夜高潮次次欢爽av女 | 波多野结衣一区二区三区av免费 | 伊人久久大香线焦av综合影院 | 国产免费观看黄av片 | 国产人妻人伦精品1国产丝袜 | 成人动漫在线观看 | 福利一区二区三区视频在线观看 | 欧美老妇与禽交 | 欧美zoozzooz性欧美 | 国产精品久久久久9999小说 | 无人区乱码一区二区三区 | 亚洲爆乳大丰满无码专区 | 少妇厨房愉情理9仑片视频 | 成人亚洲精品久久久久软件 | 欧美亚洲国产一区二区三区 | 久久无码中文字幕免费影院蜜桃 | 亚洲国产欧美国产综合一区 | 人妻互换免费中文字幕 | 亚洲国产午夜精品理论片 | 欧美人妻一区二区三区 | 国产亚洲人成a在线v网站 | 亚洲小说图区综合在线 | 中文无码成人免费视频在线观看 | 无码成人精品区在线观看 | 国产熟女一区二区三区四区五区 | 成人无码精品1区2区3区免费看 | 欧美丰满熟妇xxxx | 中文字幕无码日韩专区 | 日韩欧美成人免费观看 | 成人av无码一区二区三区 | 18禁黄网站男男禁片免费观看 | 国产精品对白交换视频 | 日日鲁鲁鲁夜夜爽爽狠狠 | 欧美国产亚洲日韩在线二区 | 精品国偷自产在线视频 | 日韩精品无码一本二本三本色 | 国产绳艺sm调教室论坛 | 给我免费的视频在线观看 | 国产麻豆精品一区二区三区v视界 | 国产av无码专区亚洲a∨毛片 | 中国女人内谢69xxxxxa片 | 国产绳艺sm调教室论坛 | 天天做天天爱天天爽综合网 | 国产欧美精品一区二区三区 | 亚洲精品一区三区三区在线观看 | 两性色午夜免费视频 | 天天躁日日躁狠狠躁免费麻豆 | 天天拍夜夜添久久精品大 | 亚洲精品成人福利网站 | 日韩av无码一区二区三区 | 露脸叫床粗话东北少妇 | 波多野结衣av一区二区全免费观看 | 青草视频在线播放 | 国产综合久久久久鬼色 | 成人欧美一区二区三区 | 久久久成人毛片无码 | 疯狂三人交性欧美 | 少女韩国电视剧在线观看完整 | 精品国产乱码久久久久乱码 | 一本无码人妻在中文字幕免费 | 久久精品国产99精品亚洲 | 激情五月综合色婷婷一区二区 | 精品国产福利一区二区 | 人妻体内射精一区二区三四 | 成熟人妻av无码专区 | 亚洲熟妇自偷自拍另类 | 国产一区二区三区日韩精品 | 国产激情艳情在线看视频 | 在线观看国产一区二区三区 | 国产精品亚洲一区二区三区喷水 | 亚洲国产午夜精品理论片 | 国产综合色产在线精品 | 亚洲成a人片在线观看无码3d | 色狠狠av一区二区三区 | 无套内射视频囯产 | 一个人看的www免费视频在线观看 | 亚洲国产日韩a在线播放 | ass日本丰满熟妇pics | 国产绳艺sm调教室论坛 | 色婷婷久久一区二区三区麻豆 | 一区二区传媒有限公司 | 一本色道久久综合亚洲精品不卡 | 日韩亚洲欧美中文高清在线 | 久久亚洲中文字幕精品一区 | 国产艳妇av在线观看果冻传媒 | 精品少妇爆乳无码av无码专区 | 99久久精品无码一区二区毛片 | 亚洲中文字幕成人无码 | 午夜精品久久久久久久久 | 男人和女人高潮免费网站 | 永久黄网站色视频免费直播 | 国产超级va在线观看视频 | 日日摸天天摸爽爽狠狠97 | 久久97精品久久久久久久不卡 | 国内少妇偷人精品视频 | 久久97精品久久久久久久不卡 | 精品一区二区不卡无码av | 欧美猛少妇色xxxxx | 又粗又大又硬毛片免费看 | 青草视频在线播放 | 欧美丰满熟妇xxxx性ppx人交 | 国产亚av手机在线观看 | 日本丰满熟妇videos | 小泽玛莉亚一区二区视频在线 | 日韩 欧美 动漫 国产 制服 | 国产亚洲精品久久久久久国模美 | 欧美精品免费观看二区 | 亚洲成av人在线观看网址 | 国产一区二区三区精品视频 | 天堂а√在线中文在线 | 性欧美熟妇videofreesex | 97无码免费人妻超级碰碰夜夜 | 成在人线av无码免观看麻豆 | 欧美丰满熟妇xxxx性ppx人交 | 美女黄网站人色视频免费国产 | 久久综合网欧美色妞网 | 国产激情一区二区三区 | 亚洲精品中文字幕久久久久 | 色综合久久久无码中文字幕 | 精品久久久无码人妻字幂 | 久久综合九色综合欧美狠狠 | 性欧美牲交在线视频 | 亚洲日韩乱码中文无码蜜桃臀网站 | 无码国内精品人妻少妇 | 巨爆乳无码视频在线观看 | 久久久久久久久888 | 亚洲a无码综合a国产av中文 | 暴力强奷在线播放无码 | 天堂一区人妻无码 | 天堂无码人妻精品一区二区三区 | 正在播放老肥熟妇露脸 | 日日摸夜夜摸狠狠摸婷婷 | 亚洲狠狠色丁香婷婷综合 | 青草青草久热国产精品 | 久久五月精品中文字幕 | 精品午夜福利在线观看 | 国色天香社区在线视频 | 亚洲成a人片在线观看无码3d | 无码国产色欲xxxxx视频 | 无码纯肉视频在线观看 | 色爱情人网站 | 亚洲中文字幕无码中字 | 老司机亚洲精品影院无码 | 99久久久无码国产精品免费 | 欧洲精品码一区二区三区免费看 | 高潮毛片无遮挡高清免费 | 国产综合久久久久鬼色 | 久久亚洲精品成人无码 | 成在人线av无码免观看麻豆 | 99er热精品视频 | 久久久久久九九精品久 | 波多野42部无码喷潮在线 | 三级4级全黄60分钟 | 熟妇人妻无码xxx视频 | 少妇久久久久久人妻无码 | 中文精品无码中文字幕无码专区 | 久久久无码中文字幕久... | 日韩亚洲欧美精品综合 | 免费中文字幕日韩欧美 | 久久久亚洲欧洲日产国码αv | 亚洲色在线无码国产精品不卡 | 内射老妇bbwx0c0ck | 日韩精品无码免费一区二区三区 | 亚洲成av人影院在线观看 | 国产小呦泬泬99精品 | 色窝窝无码一区二区三区色欲 | 在线精品国产一区二区三区 | 天天摸天天透天天添 | 5858s亚洲色大成网站www | 久久视频在线观看精品 | 无套内射视频囯产 | 久久人妻内射无码一区三区 | 久久精品中文字幕一区 | 97无码免费人妻超级碰碰夜夜 | 国产色xx群视频射精 | 曰本女人与公拘交酡免费视频 | 无人区乱码一区二区三区 | 国产免费无码一区二区视频 | 撕开奶罩揉吮奶头视频 | 高清不卡一区二区三区 | 人妻aⅴ无码一区二区三区 | 日韩在线不卡免费视频一区 | 国产亲子乱弄免费视频 | 中文字幕乱码人妻无码久久 | 亚洲欧美日韩国产精品一区二区 | 日本护士毛茸茸高潮 | 特大黑人娇小亚洲女 | 国产精品-区区久久久狼 | 少妇无套内谢久久久久 | 精品国产av色一区二区深夜久久 | 色五月五月丁香亚洲综合网 | 久久伊人色av天堂九九小黄鸭 | 野外少妇愉情中文字幕 | 国产精品办公室沙发 | 免费男性肉肉影院 | 动漫av网站免费观看 | 装睡被陌生人摸出水好爽 | 人妻与老人中文字幕 | 精品乱子伦一区二区三区 | 在线播放免费人成毛片乱码 | aⅴ亚洲 日韩 色 图网站 播放 | 久久婷婷五月综合色国产香蕉 | 国产av无码专区亚洲a∨毛片 | 波多野结衣高清一区二区三区 | 欧美喷潮久久久xxxxx | 99久久精品午夜一区二区 | 蜜桃视频韩日免费播放 | 国产一区二区三区四区五区加勒比 | 无遮无挡爽爽免费视频 | 久久综合色之久久综合 | 蜜桃无码一区二区三区 | 中文字幕日产无线码一区 | 又湿又紧又大又爽a视频国产 | 国产激情无码一区二区app | 国产精品手机免费 | 玩弄人妻少妇500系列视频 | 成人无码精品1区2区3区免费看 | 东京热一精品无码av | 国产午夜精品一区二区三区嫩草 | 大肉大捧一进一出好爽视频 | 无码帝国www无码专区色综合 | 中文字幕无码av激情不卡 | 人人澡人摸人人添 | 日本精品人妻无码免费大全 | 日韩视频 中文字幕 视频一区 | 人人爽人人爽人人片av亚洲 | 亚洲国产日韩a在线播放 | 国产国语老龄妇女a片 | 久久久久久a亚洲欧洲av冫 | ass日本丰满熟妇pics | 国产精品高潮呻吟av久久4虎 | 色偷偷av老熟女 久久精品人妻少妇一区二区三区 | 精品熟女少妇av免费观看 | 人人妻人人藻人人爽欧美一区 | 三上悠亚人妻中文字幕在线 | 国产婷婷色一区二区三区在线 | 极品尤物被啪到呻吟喷水 | 秋霞特色aa大片 | 欧美第一黄网免费网站 | 久久久久免费精品国产 | 久久精品成人欧美大片 | 狠狠cao日日穞夜夜穞av | 人妻少妇精品无码专区二区 | 久久精品国产大片免费观看 | 国产三级精品三级男人的天堂 | 免费播放一区二区三区 | 国内丰满熟女出轨videos | 性欧美videos高清精品 | 亚洲天堂2017无码中文 | 无码免费一区二区三区 | 少妇人妻av毛片在线看 | 人妻中文无码久热丝袜 | 中文精品久久久久人妻不卡 | 男女性色大片免费网站 | 中文字幕色婷婷在线视频 | 亚洲精品久久久久avwww潮水 | 国产激情一区二区三区 | 无码精品国产va在线观看dvd | 亚洲毛片av日韩av无码 | 成人精品天堂一区二区三区 | 九九久久精品国产免费看小说 | 色一情一乱一伦 | 日韩视频 中文字幕 视频一区 | 人人妻人人澡人人爽欧美一区九九 | 激情内射亚州一区二区三区爱妻 | 欧美激情综合亚洲一二区 | 国产色视频一区二区三区 | 国产色视频一区二区三区 | 精品久久久久香蕉网 | 丰满人妻翻云覆雨呻吟视频 | 国产两女互慰高潮视频在线观看 | 欧美三级不卡在线观看 | www国产精品内射老师 | 国产综合在线观看 | 荫蒂被男人添的好舒服爽免费视频 | 少妇高潮喷潮久久久影院 | 精品久久久久香蕉网 | 免费播放一区二区三区 | а天堂中文在线官网 | 亚洲国产精品一区二区美利坚 | 日韩无套无码精品 | 色综合久久88色综合天天 | 天堂在线观看www | 久久久久99精品国产片 | 麻豆果冻传媒2021精品传媒一区下载 | 精品熟女少妇av免费观看 | 亚洲欧美国产精品久久 | 一区二区三区乱码在线 | 欧洲 | 国产亚洲人成a在线v网站 | 波多野结衣高清一区二区三区 | 婷婷综合久久中文字幕蜜桃三电影 | 国产极品视觉盛宴 | 成人无码影片精品久久久 | 国产口爆吞精在线视频 | 日韩精品一区二区av在线 | 亚洲啪av永久无码精品放毛片 | 婷婷综合久久中文字幕蜜桃三电影 | 国产电影无码午夜在线播放 | 久久精品国产一区二区三区 | 亚洲日韩中文字幕在线播放 | 欧美性猛交内射兽交老熟妇 | 天天燥日日燥 | 日韩精品久久久肉伦网站 | 一本加勒比波多野结衣 | 久久www免费人成人片 | 久久精品国产一区二区三区肥胖 | 日日鲁鲁鲁夜夜爽爽狠狠 | 精品国产青草久久久久福利 | 帮老师解开蕾丝奶罩吸乳网站 | 无码av最新清无码专区吞精 | 成人欧美一区二区三区黑人免费 | 国产亲子乱弄免费视频 | 国产av一区二区精品久久凹凸 | 久久久久99精品成人片 | 日韩精品久久久肉伦网站 | 亚洲经典千人经典日产 | 久久zyz资源站无码中文动漫 | 亚洲精品成a人在线观看 | 99精品久久毛片a片 | 精品无码成人片一区二区98 | 国产精品久久国产三级国 | 熟女少妇人妻中文字幕 | 99re在线播放 | 亚洲无人区午夜福利码高清完整版 | 欧美放荡的少妇 | 极品尤物被啪到呻吟喷水 | 日日橹狠狠爱欧美视频 | 奇米影视7777久久精品 | 97人妻精品一区二区三区 | 麻豆人妻少妇精品无码专区 | 国产精品欧美成人 | www国产亚洲精品久久久日本 | 成人精品天堂一区二区三区 | 色五月五月丁香亚洲综合网 | 成在人线av无码免费 | 久久国内精品自在自线 | 国产97人人超碰caoprom | 久久99国产综合精品 | 久久久久久久久蜜桃 | 亚洲色大成网站www国产 | 国产精品-区区久久久狼 | 久久久久久久人妻无码中文字幕爆 | 十八禁视频网站在线观看 | 99久久久国产精品无码免费 | 欧美日韩亚洲国产精品 | 无码中文字幕色专区 | 国产xxx69麻豆国语对白 | 国産精品久久久久久久 | 日日摸天天摸爽爽狠狠97 | 动漫av一区二区在线观看 | 亚洲国产成人a精品不卡在线 | 亚洲 另类 在线 欧美 制服 | 国内精品人妻无码久久久影院 | 国产在热线精品视频 | 久久久久人妻一区精品色欧美 | 久久无码人妻影院 | 特黄特色大片免费播放器图片 | 最新国产麻豆aⅴ精品无码 | 一本色道久久综合亚洲精品不卡 | 在线播放免费人成毛片乱码 | 大肉大捧一进一出好爽视频 | 男女猛烈xx00免费视频试看 | 国产精品高潮呻吟av久久4虎 | 国产精品18久久久久久麻辣 | 亚洲娇小与黑人巨大交 | 内射欧美老妇wbb | 国产av一区二区三区最新精品 | 免费无码肉片在线观看 | 国产无套内射久久久国产 | 精品国产成人一区二区三区 | 午夜免费福利小电影 | 99精品无人区乱码1区2区3区 | 国产成人无码a区在线观看视频app | 中文无码精品a∨在线观看不卡 | 国产亚洲人成在线播放 | а天堂中文在线官网 | 人妻aⅴ无码一区二区三区 | 国产精品久久久av久久久 | 中文亚洲成a人片在线观看 | 在线播放亚洲第一字幕 | 国产成人av免费观看 | 永久免费观看国产裸体美女 | 国产高清av在线播放 | 国产精品怡红院永久免费 | 97久久超碰中文字幕 | 国产精品久久久久久无码 | 国内精品九九久久久精品 | 亚洲欧美精品aaaaaa片 | 色婷婷综合中文久久一本 | 少妇被黑人到高潮喷出白浆 | 国产无遮挡又黄又爽免费视频 | 老司机亚洲精品影院无码 | 乱码av麻豆丝袜熟女系列 | 久久精品一区二区三区四区 | 精品无码成人片一区二区98 | 国产精品.xx视频.xxtv | 精品水蜜桃久久久久久久 | 国产成人一区二区三区在线观看 | 亚洲熟悉妇女xxx妇女av | 国产婷婷色一区二区三区在线 | 荫蒂被男人添的好舒服爽免费视频 | 丁香啪啪综合成人亚洲 | 妺妺窝人体色www婷婷 | 老司机亚洲精品影院无码 | 精品国产精品久久一区免费式 | 最近免费中文字幕中文高清百度 | av无码久久久久不卡免费网站 | 欧美大屁股xxxxhd黑色 | 欧美大屁股xxxxhd黑色 | 欧美精品国产综合久久 | 国产成人精品一区二区在线小狼 | 亚洲熟熟妇xxxx | 少妇性l交大片欧洲热妇乱xxx | 欧美丰满少妇xxxx性 | 日日夜夜撸啊撸 | aⅴ在线视频男人的天堂 | 国产精品无码mv在线观看 | 久久精品国产99精品亚洲 | 亚洲综合另类小说色区 | 性色av无码免费一区二区三区 | 亚洲国产精品毛片av不卡在线 | 无码一区二区三区在线 | 真人与拘做受免费视频一 | 男女性色大片免费网站 | 樱花草在线播放免费中文 | 1000部啪啪未满十八勿入下载 | 99久久久无码国产精品免费 | 国产农村妇女高潮大叫 | 日韩人妻无码中文字幕视频 | 无码播放一区二区三区 | 最新版天堂资源中文官网 | 国产精品久久久久久久9999 | 欧美成人午夜精品久久久 | 成人性做爰aaa片免费看不忠 | 久久综合九色综合欧美狠狠 | 成人aaa片一区国产精品 | 4hu四虎永久在线观看 | 日本成熟视频免费视频 | 色窝窝无码一区二区三区色欲 | 国产艳妇av在线观看果冻传媒 | 亚洲成av人片天堂网无码】 | 亚洲乱码国产乱码精品精 | 暴力强奷在线播放无码 | 奇米影视7777久久精品人人爽 | 中文无码成人免费视频在线观看 | 亚洲a无码综合a国产av中文 | 蜜臀av无码人妻精品 | 少妇无码av无码专区在线观看 | 一区二区传媒有限公司 | 麻豆果冻传媒2021精品传媒一区下载 | 亚洲综合久久一区二区 | 色情久久久av熟女人妻网站 | 久久亚洲a片com人成 | 免费人成网站视频在线观看 | 久久久久久av无码免费看大片 | 欧美第一黄网免费网站 | 377p欧洲日本亚洲大胆 | 国产午夜视频在线观看 | 中文字幕久久久久人妻 | 国产精品亚洲一区二区三区喷水 | 亚洲狠狠色丁香婷婷综合 | 亚洲自偷自拍另类第1页 | 国产精品美女久久久 | 自拍偷自拍亚洲精品被多人伦好爽 | 国产内射老熟女aaaa | 国产亚洲人成在线播放 | 三上悠亚人妻中文字幕在线 | 青青草原综合久久大伊人精品 | 麻豆成人精品国产免费 | 日日麻批免费40分钟无码 | 人人爽人人澡人人高潮 | 国产精品久久久久久久9999 | 色综合久久久久综合一本到桃花网 | 嫩b人妻精品一区二区三区 | 日本一区二区更新不卡 | 99re在线播放 | 爆乳一区二区三区无码 | 强辱丰满人妻hd中文字幕 | 露脸叫床粗话东北少妇 | 香港三级日本三级妇三级 | 巨爆乳无码视频在线观看 | 日本xxxx色视频在线观看免费 | 国产av人人夜夜澡人人爽麻豆 | 搡女人真爽免费视频大全 | 色综合久久久久综合一本到桃花网 | 精品无码国产一区二区三区av | 亚洲日韩av一区二区三区四区 | 无套内射视频囯产 | 少妇无码吹潮 | 欧美人与牲动交xxxx | 大色综合色综合网站 | 日本精品少妇一区二区三区 | 亚洲色欲久久久综合网东京热 | 妺妺窝人体色www婷婷 | 亚洲伊人久久精品影院 | 国产亚洲精品久久久闺蜜 | 中文字幕乱码亚洲无线三区 | 熟女体下毛毛黑森林 | 国产超碰人人爽人人做人人添 | 无码播放一区二区三区 | 人妻与老人中文字幕 | 最近中文2019字幕第二页 | 国产九九九九九九九a片 | 成人性做爰aaa片免费看 | 性欧美疯狂xxxxbbbb | 2019nv天堂香蕉在线观看 | 亚洲精品一区三区三区在线观看 | 日本精品久久久久中文字幕 | 高清不卡一区二区三区 | 国产成人无码av在线影院 | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | 日本丰满熟妇videos | 精品人人妻人人澡人人爽人人 | 强伦人妻一区二区三区视频18 | 又粗又大又硬毛片免费看 | 欧美三级不卡在线观看 | 成在人线av无码免费 | 成年美女黄网站色大免费全看 | 乱码av麻豆丝袜熟女系列 | 在线а√天堂中文官网 | 任你躁国产自任一区二区三区 | 丰满人妻翻云覆雨呻吟视频 | 免费国产成人高清在线观看网站 | 国产精品igao视频网 | 欧美 亚洲 国产 另类 | 亚洲国产欧美日韩精品一区二区三区 | 人人妻人人澡人人爽精品欧美 | 亚洲国产av精品一区二区蜜芽 | 久久综合色之久久综合 | 午夜精品一区二区三区在线观看 | 欧美精品在线观看 | 久久久久久av无码免费看大片 | 久久午夜无码鲁丝片午夜精品 | 国产色在线 | 国产 | 国产精品久久久一区二区三区 | 久久人人97超碰a片精品 | 国产精品无码永久免费888 | 乱人伦人妻中文字幕无码久久网 | 蜜桃av蜜臀av色欲av麻 999久久久国产精品消防器材 | 精品欧美一区二区三区久久久 | 国产成人无码一二三区视频 | 97精品人妻一区二区三区香蕉 | 国产黄在线观看免费观看不卡 | 久久精品99久久香蕉国产色戒 | 亚洲国产av精品一区二区蜜芽 | 日欧一片内射va在线影院 | 无套内射视频囯产 | 暴力强奷在线播放无码 | 欧美精品一区二区精品久久 | 漂亮人妻洗澡被公强 日日躁 | 久久这里只有精品视频9 | 1000部啪啪未满十八勿入下载 | 动漫av一区二区在线观看 | 精品日本一区二区三区在线观看 | 色欲人妻aaaaaaa无码 | 亚洲成av人片天堂网无码】 | 中文字幕人妻丝袜二区 | 波多野结衣av一区二区全免费观看 | 99久久亚洲精品无码毛片 | 日日摸天天摸爽爽狠狠97 | 久久精品丝袜高跟鞋 | 伊人久久婷婷五月综合97色 | 国产精品欧美成人 | 成人欧美一区二区三区黑人 | 波多野结衣av一区二区全免费观看 | aⅴ在线视频男人的天堂 | 午夜福利不卡在线视频 | 少妇厨房愉情理9仑片视频 | 成人精品视频一区二区三区尤物 | 日韩少妇白浆无码系列 | 99久久久国产精品无码免费 | 亚洲精品中文字幕乱码 | 在教室伦流澡到高潮hnp视频 | 女高中生第一次破苞av | 狠狠色噜噜狠狠狠7777奇米 | 人人妻人人澡人人爽人人精品浪潮 | 桃花色综合影院 | 极品尤物被啪到呻吟喷水 | 国产精品成人av在线观看 | 亚洲国产精品无码久久久久高潮 | 亚洲中文字幕久久无码 | 国产 浪潮av性色四虎 | 免费乱码人妻系列无码专区 | 无码成人精品区在线观看 | 日韩精品无码一区二区中文字幕 | 成人欧美一区二区三区黑人免费 | 无码福利日韩神码福利片 | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | 中国女人内谢69xxxxxa片 | 日日夜夜撸啊撸 | 精品偷自拍另类在线观看 | 少妇久久久久久人妻无码 | 亚洲成a人片在线观看日本 | 人妻少妇精品久久 | 美女极度色诱视频国产 | 中文字幕无码热在线视频 | 国产超级va在线观看视频 | 国产内射爽爽大片视频社区在线 | 中文字幕无码热在线视频 | 日日橹狠狠爱欧美视频 | 影音先锋中文字幕无码 | 色诱久久久久综合网ywww | 乌克兰少妇性做爰 | 精品无人国产偷自产在线 | 亚洲另类伦春色综合小说 | 日本在线高清不卡免费播放 | 免费无码午夜福利片69 | 精品亚洲韩国一区二区三区 | 永久免费观看国产裸体美女 | 啦啦啦www在线观看免费视频 | 日本大乳高潮视频在线观看 | 亚洲大尺度无码无码专区 | 亚洲欧美日韩综合久久久 | 风流少妇按摩来高潮 | 亚洲а∨天堂久久精品2021 | 男女作爱免费网站 | 成人精品视频一区二区三区尤物 | 欧美激情内射喷水高潮 | 中文毛片无遮挡高清免费 | 久久久国产一区二区三区 | 日本精品少妇一区二区三区 | 国产亚洲精品久久久久久久久动漫 | 日韩精品无码免费一区二区三区 | 在线观看国产午夜福利片 | 暴力强奷在线播放无码 | 国产亚洲视频中文字幕97精品 | 樱花草在线播放免费中文 | 性做久久久久久久久 | 少妇人妻av毛片在线看 | 久久综合九色综合97网 | 99久久精品无码一区二区毛片 | 亚洲欧洲无卡二区视頻 | 久久99热只有频精品8 | 亚洲а∨天堂久久精品2021 | 2020久久超碰国产精品最新 | 成人欧美一区二区三区黑人 | 欧美日韩亚洲国产精品 | 国产精品高潮呻吟av久久 | 少女韩国电视剧在线观看完整 | 亚洲人成无码网www | 免费国产黄网站在线观看 | 国产国语老龄妇女a片 | 亚洲精品午夜无码电影网 | 国产真实乱对白精彩久久 | 国产97在线 | 亚洲 | v一区无码内射国产 | 亚洲 激情 小说 另类 欧美 | 无码人妻丰满熟妇区五十路百度 | 久久久精品欧美一区二区免费 | 国产亚洲精品久久久ai换 | 东北女人啪啪对白 | 久久综合色之久久综合 | 亚洲乱码中文字幕在线 | 国产成人综合色在线观看网站 | 午夜精品一区二区三区的区别 | 日产精品高潮呻吟av久久 | 妺妺窝人体色www婷婷 | 天堂а√在线地址中文在线 | 国产成人无码a区在线观看视频app | 国产成人无码av片在线观看不卡 | 丰满少妇高潮惨叫视频 | 欧美性生交活xxxxxdddd | 亚洲国产欧美国产综合一区 | 中文字幕乱码中文乱码51精品 | 人妻少妇精品无码专区动漫 | 亚洲码国产精品高潮在线 | 久久人人爽人人人人片 | 亚洲精品久久久久avwww潮水 | 久久www免费人成人片 | 麻豆md0077饥渴少妇 | 亚洲毛片av日韩av无码 | 在线欧美精品一区二区三区 | 亚洲成av人综合在线观看 | 欧美人与牲动交xxxx | 国产 精品 自在自线 | 午夜性刺激在线视频免费 | 欧美黑人乱大交 | 夫妻免费无码v看片 | 男女下面进入的视频免费午夜 | 又大又硬又爽免费视频 | 国产黄在线观看免费观看不卡 | 国产无遮挡吃胸膜奶免费看 | 国产97人人超碰caoprom | 国产艳妇av在线观看果冻传媒 | 欧美 日韩 人妻 高清 中文 | 人妻无码αv中文字幕久久琪琪布 | 色欲人妻aaaaaaa无码 | 亚洲人成影院在线观看 | 久久久久成人片免费观看蜜芽 | 久久久婷婷五月亚洲97号色 | 伊在人天堂亚洲香蕉精品区 | 97夜夜澡人人双人人人喊 | 精品偷自拍另类在线观看 | 少妇性l交大片欧洲热妇乱xxx | 九月婷婷人人澡人人添人人爽 | 精品久久久无码中文字幕 | 熟妇人妻无码xxx视频 | 午夜精品久久久久久久久 | 久久99精品国产.久久久久 | 精品水蜜桃久久久久久久 | 亚洲综合无码久久精品综合 | 丰满岳乱妇在线观看中字无码 | 亚洲男女内射在线播放 | 欧美一区二区三区视频在线观看 | 少妇性l交大片欧洲热妇乱xxx | 蜜臀av在线观看 在线欧美精品一区二区三区 | 久久精品中文字幕一区 | 久久国产劲爆∧v内射 | 国产片av国语在线观看 | 日本爽爽爽爽爽爽在线观看免 | 女人被爽到呻吟gif动态图视看 | 午夜免费福利小电影 | v一区无码内射国产 | 99久久久无码国产aaa精品 | 中文字幕色婷婷在线视频 | аⅴ资源天堂资源库在线 | 亚洲中文字幕乱码av波多ji | 国产精品久久福利网站 | 日韩亚洲欧美中文高清在线 | 在线a亚洲视频播放在线观看 | 亚洲毛片av日韩av无码 | 国内精品久久毛片一区二区 | 久久亚洲中文字幕精品一区 | 亚洲精品一区三区三区在线观看 | 老司机亚洲精品影院 | 亚洲精品成a人在线观看 | 欧美阿v高清资源不卡在线播放 | a在线观看免费网站大全 | 国产美女极度色诱视频www | 精品国偷自产在线视频 | 老子影院午夜精品无码 | 免费看少妇作爱视频 | 国产人妻人伦精品1国产丝袜 | 色婷婷久久一区二区三区麻豆 | 在线播放免费人成毛片乱码 | 日韩精品乱码av一区二区 | 日韩人妻系列无码专区 | aⅴ亚洲 日韩 色 图网站 播放 | 欧洲熟妇精品视频 | 成人一在线视频日韩国产 | www国产亚洲精品久久久日本 | 亚洲国产成人av在线观看 | 天堂亚洲2017在线观看 | 人人妻人人澡人人爽欧美一区 | 亚洲国产欧美国产综合一区 | 免费男性肉肉影院 | 荫蒂被男人添的好舒服爽免费视频 | 伊人久久大香线蕉亚洲 | 熟女少妇人妻中文字幕 | 日本一卡2卡3卡四卡精品网站 | 中文字幕日韩精品一区二区三区 | 白嫩日本少妇做爰 | 日本又色又爽又黄的a片18禁 | 日日躁夜夜躁狠狠躁 | 水蜜桃色314在线观看 | 国产麻豆精品一区二区三区v视界 | 色狠狠av一区二区三区 | 人妻尝试又大又粗久久 | 人妻少妇精品无码专区二区 | 一个人免费观看的www视频 | 日日摸夜夜摸狠狠摸婷婷 | 国産精品久久久久久久 | 东京无码熟妇人妻av在线网址 | 国产成人无码一二三区视频 | 四虎国产精品免费久久 | 男人和女人高潮免费网站 | 最新版天堂资源中文官网 | 国产在线精品一区二区高清不卡 | 中文字幕色婷婷在线视频 | 中国大陆精品视频xxxx | 亚洲成熟女人毛毛耸耸多 | 欧美放荡的少妇 | 牛和人交xxxx欧美 | 午夜性刺激在线视频免费 | 无码精品国产va在线观看dvd | 动漫av一区二区在线观看 | 国产成人无码午夜视频在线观看 | 久久无码中文字幕免费影院蜜桃 | 熟妇人妻激情偷爽文 | 久久亚洲精品中文字幕无男同 | 欧美性猛交xxxx富婆 | 成 人影片 免费观看 | 一个人看的www免费视频在线观看 | 久久精品一区二区三区四区 | 99久久久国产精品无码免费 | 伊人久久大香线蕉av一区二区 | 女高中生第一次破苞av | 天堂一区人妻无码 | 熟女少妇人妻中文字幕 | 国产精品久久久久7777 | 亚洲日韩中文字幕在线播放 | 久久天天躁狠狠躁夜夜免费观看 | 老司机亚洲精品影院 | 亚洲人成无码网www | 中文字幕无码人妻少妇免费 | 少妇的肉体aa片免费 | 狠狠色欧美亚洲狠狠色www | 国产午夜无码视频在线观看 | 欧美35页视频在线观看 | 日韩人妻无码一区二区三区久久99 | 成年女人永久免费看片 | 久久精品女人的天堂av | 亚洲无人区午夜福利码高清完整版 | 亚洲va中文字幕无码久久不卡 | 日日碰狠狠丁香久燥 | 国产精品美女久久久久av爽李琼 | 性生交大片免费看女人按摩摩 | 丰腴饱满的极品熟妇 | 蜜桃av蜜臀av色欲av麻 999久久久国产精品消防器材 | 亚洲 日韩 欧美 成人 在线观看 | 国产精品美女久久久久av爽李琼 | 久久国产精品二国产精品 | 麻豆md0077饥渴少妇 | 国产成人综合美国十次 | 欧美freesex黑人又粗又大 | 老头边吃奶边弄进去呻吟 | 东北女人啪啪对白 | 在线视频网站www色 | 蜜臀av在线观看 在线欧美精品一区二区三区 | 婷婷五月综合激情中文字幕 | 日韩 欧美 动漫 国产 制服 | 成人精品视频一区二区三区尤物 | 国产熟女一区二区三区四区五区 | 国产另类ts人妖一区二区 | 一本色道久久综合亚洲精品不卡 | 18无码粉嫩小泬无套在线观看 | 亚洲另类伦春色综合小说 | 亚洲s色大片在线观看 | 国产精品久久久久久久9999 | 国产乱码精品一品二品 | 又大又黄又粗又爽的免费视频 | 亚洲 a v无 码免 费 成 人 a v | 无码播放一区二区三区 | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | 国产午夜精品一区二区三区嫩草 | 欧美日韩综合一区二区三区 | 欧美丰满熟妇xxxx性ppx人交 | 欧美真人作爱免费视频 | 亚洲狠狠婷婷综合久久 | 欧美日本精品一区二区三区 | 国产成人一区二区三区在线观看 | 狠狠躁日日躁夜夜躁2020 | 国产午夜手机精彩视频 | 久久久精品人妻久久影视 | 成人免费无码大片a毛片 | 在线观看欧美一区二区三区 | 午夜不卡av免费 一本久久a久久精品vr综合 | 女人被爽到呻吟gif动态图视看 | 日韩精品a片一区二区三区妖精 | 欧美国产日韩亚洲中文 | 在线观看国产一区二区三区 | 色欲久久久天天天综合网精品 | 国产做国产爱免费视频 | 久久久av男人的天堂 | 精品无码一区二区三区爱欲 | 国产精品高潮呻吟av久久4虎 | av人摸人人人澡人人超碰下载 | 内射白嫩少妇超碰 | 亚洲国产精品成人久久蜜臀 | 人妻插b视频一区二区三区 | 国产精品va在线观看无码 | 日日摸夜夜摸狠狠摸婷婷 | 亚洲综合伊人久久大杳蕉 | 牲欲强的熟妇农村老妇女视频 | 人人妻人人澡人人爽欧美一区 | 婷婷综合久久中文字幕蜜桃三电影 | 国产又粗又硬又大爽黄老大爷视 | 婷婷色婷婷开心五月四房播播 | 一个人看的www免费视频在线观看 | 亚洲精品中文字幕乱码 | 国产suv精品一区二区五 | 人妻无码αv中文字幕久久琪琪布 | 少妇人妻av毛片在线看 | 国产色xx群视频射精 | 亚洲国产欧美国产综合一区 | 国产精品高潮呻吟av久久4虎 | 亚洲色欲色欲欲www在线 | 人妻天天爽夜夜爽一区二区 | 亚洲精品国产精品乱码不卡 | 色欲人妻aaaaaaa无码 | 男女猛烈xx00免费视频试看 | 黑人巨大精品欧美黑寡妇 | 内射白嫩少妇超碰 | 国产疯狂伦交大片 | 日韩无套无码精品 | 日本丰满熟妇videos | 亚洲精品一区国产 | 色婷婷久久一区二区三区麻豆 | 天天做天天爱天天爽综合网 | 在线精品亚洲一区二区 | 无码毛片视频一区二区本码 | 国产麻豆精品一区二区三区v视界 | 亚洲精品一区二区三区四区五区 | 国产av无码专区亚洲a∨毛片 | 在线a亚洲视频播放在线观看 | 亚洲色偷偷男人的天堂 | 日日摸天天摸爽爽狠狠97 | 波多野结衣av一区二区全免费观看 | 精品国产精品久久一区免费式 | 亚洲熟妇自偷自拍另类 | 蜜臀aⅴ国产精品久久久国产老师 | 亚洲人成网站色7799 | 国产成人综合美国十次 | 色偷偷人人澡人人爽人人模 | www国产精品内射老师 | 一本加勒比波多野结衣 | 人妻熟女一区 | 99久久精品国产一区二区蜜芽 | 天天摸天天碰天天添 | 国产97人人超碰caoprom | 亚洲欧美色中文字幕在线 | www国产亚洲精品久久久日本 | 麻豆av传媒蜜桃天美传媒 | 亚洲色欲色欲天天天www | 亚洲 日韩 欧美 成人 在线观看 | 亚洲精品成人av在线 | 国产成人无码a区在线观看视频app |