포장 류, Integer 류, String 과 int 유형 상호 변환
2355 단어 자바
기본 데이터 형식 에 대해 더 많은 조작 을 하고 편리 한 조작 을 하기 위해 자 바 는 모든 기본 데이터 형식 에 대응 하 는 유형 을 제공 하여 포장 류 라 고 부른다.byte——Byte short——Short int——Integer long——Long float——Float double——Double char——Character boolean——Boolean
Integer 클래스 - 기본 형식 int 에 대응 하 는 클래스 유형
jdk 문서 보기
구성원 변수:
static int MAX_VALUE int 형식 이 표시 할 수 있 는 최대 값
static int MIN_VALUE int 형식 이 표시 할 수 있 는 최소 값
구조 방법:
public Integer (int value) 는 새로운 분 배 된 Integer 대상 을 구성 합 니 다. 지정 한 int 값 을 표시 합 니 다.
public Integer (String s) throws NumberFormat Exception 은 새로 분 배 된 Integer 대상 을 구성 합 니 다. 이 는 String 매개 변수 가 가리 키 는 int 값 을 표시 합 니 다.이 문자열 은 숫자 로 구성 되 어야 합 니 다 (예: "99"). 그렇지 않 으 면 이상 합 니 다.
일부 정적 방법:
public static String toBinaryString (int i) 진수 변환: 정수 - > 이 진수
public static String toHexString (int i) 을 16 진법 으로 변환
int i=100;
Integer ii= new Integer(i);// Integer
System.out.println(ii);//100
String s="100";
Integer is= new Integer(s);
System.out.println(is);//100
String 과 int 형식의 상호 변환
int 회전 String
1. String 클래스 의 Public static String value Of (int i) String 클래스 의 value Of 정적 방법 은 임의의 형식의 데 이 터 를 문자열 형식 으로 변환 할 수 있 습 니 다.2. Integer 클래스 의 Public static String toString (int i)
int number=10;
String s1= String.valueOf(number);
String s2= Integer.toString(number);
String 회전 int
public static int parseInt(String s) throws NumberFormatException
String s="10";
int i=Integer.parseInt(s);
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.