Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lifeparticle/Java-Cheatsheet

Java-Cheatsheet
https://github.com/lifeparticle/Java-Cheatsheet

Last synced: 6 days ago
JSON representation

Java-Cheatsheet

Awesome Lists containing this project

README

        

# Array

```java
Arrays.sort(array);
```

```java
return new int[] {10, 20};
```

Return an empty array.

```java
return new int[0];
```