-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathArrayTest.java
More file actions
22 lines (20 loc) · 504 Bytes
/
ArrayTest.java
File metadata and controls
22 lines (20 loc) · 504 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package array;
/**
* @ClassName ArrayTest
* @Description
* @Author changxuan
* @Date 2020-03-14 15:35
**/
public class ArrayTest {
public static void main(String[] args){
char a = 'A';
char z = '|';
int[][] arr = new int[0][0];
System.out.println((int)a);
System.out.println((int)z);
System.out.println(arr);
String address=null;
String[] splitAddress=address.split(",");
System.out.println(splitAddress.length);
}
}