You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lessons/arraylist.md
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,6 @@ section: "Arrays"
6
6
description: "learn arrays"
7
7
---
8
8
## ArrayList in java
9
-
<hr>
10
9
The ArrayList class is in implementation of the list interface that allow us to create resizable array. In simple term we can say that ArrayList in java is dynamic array for storing the elements.
11
10
It is just like the vector in c++.
12
11
@@ -67,7 +66,7 @@ The ArrayList class have some methods to perform different operations on arrayli
67
66
- Change elements
68
67
- Remove elements
69
68
70
-
## Add Elements:
69
+
###Add Elements:
71
70
- add() : This is the method to insert any elements at the end of the list.
0 commit comments