250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 파이썬
- 네이버뉴스
- mysql
- oracle
- Websocket
- spring MVC(모델2)방식
- 과학백과사전
- 幼稚园杀手(유치원킬러)
- 방식으로 텍스트
- 게시판 만들기
- 자바
- r
- jsp 파일 설정
- 크롤링
- Python
- 토픽추출
- word2vec
- 코사인 유사도
- (깃)git bash
- Gmarket
- lda
- Topics
- tomoto
- db
- test
- pytorch
- java
- 이력서
- RESFUL
- 지마켓
Archives
- Today
- Total
무회blog
Java: , 형변환 본문
JAVA에서 자주 쓰이는 형변환
11 Comments
자바에서 자주 쓰이는 형변환 시리즈를 모아보았다. 매번 까먹는 관계로 적어놔야 한다는;;;
출처는 이곳 입니다.
int to String
String str = Integer.toString(i);
String str = "" + i;
String to int
int i = Integer.parseInt(str);
int i = Integer.valueOf(str).intValue();
double to String
String str = Double.toString(d);
long to String
String str = Long.toString(l);
float to String
String str = Float.toString(f);
String to double
double d = Double.valueOf(str).doubleValue();
String to long
long l = Long.valueOf(str).longValue();
long l = Long.parseLong(str);
String to float
float f = Float.valueOf(str).floatValue();
decimal to binary
String binstr = Integer.toBinaryString(i);
decimal to hexadecimal
String hexstr = Integer.toString(i, 16);
String hexstr = Integer.toHexString(i);
Integer.toHexString( 0x10000 | i).substring(1).toUpperCase());
hexadecimal(String) to int
int i = Integer.valueOf("B8DA3", 16).intValue();
int i = Integer.parseInt("B8DA3", 16);
ASCII Code to String
String char = new Character((char)i).toString();
Integer to ASCII Code
int i = (int) c;
Integer to boolean
boolean b = (i != 0);
boolean to Integer
int i = (b)? 1 : 0;
'Java' 카테고리의 다른 글
Java: , 자바 ,클래스 구조 , 전역변수,지역변수, 메소드 호출 (0) | 2021.02.17 |
---|---|
Java: ,자바,임의값 정수 2개중 , 3의 배수, 에 해당하는 개수 구하기 (0) | 2021.02.16 |
Java: , 정규식 표현관련 (0) | 2021.02.08 |
Java: , static 변수,/메소드,/static 블록 (0) | 2021.02.08 |
Java: class 안에서 메서드 접근 -> public -> static 있을때와 없을때 (0) | 2020.11.08 |
Comments