---
type: archive
area: archive
status: archived
date: 2026-05-03
created: 2026-05-03
updated: 1980-01-01
tags:
  - archive
---
- Array of an object is full with specific default  value of that object .
- Resizing an array can be done by copying array to annother one bigger.
using 
```java
System.arraycopy()
Arrays.copyof(<source_array>, <destination_array_size>)
```
- We cann compare arrat content **Arrays.equals(array_1,array_2)**

![[img-20240813-021534-bb7aecc6.png]]

- Unusual for loop syntax

![[img-20240813-021847-690a9701.png]]

- We can label loops in Java like that
```java
outerLoopLabel:
for(...){
	for(...){
	
	}
}
// we can do: 
// continue OuterLoopLabel:
// break outerLoopLabel:
```
