概述

根据一个字符获取它在ASCII表中对应的值,办法有两种:

  1. 将字符强转为int类型
  2. 使用Integer.valueOf()方法

实现

将字符强转为int类型

1
2
3
4
5
6
7
8
9
10
11
12
/**
* @author LeDao
* @company
* @create 2021-06-21 12:38
*/
public class Test {

public static void main(String[] args) {
char c = 'a';
System.out.println((int) c);
}
}

使用Integer.valueOf()方法

1
2
3
4
5
6
7
8
9
10
11
12
/**
* @author LeDao
* @company
* @create 2021-06-21 12:38
*/
public class Test {

public static void main(String[] args) {
char c = 'a';
System.out.println(Integer.valueOf(c));
}
}