일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Book
- Excel
- 엑셀
- 도서
- 함수
- 톰캣
- java
- error
- 오류
- 성능
- Eclipse
- 튜닝
- 이클립스
- 태그를 입력해 주세요.
- 회계
- 한글
- 오라클
- 에러
- miplatform
- 데이터베이스
- Report Designer
- JavaScript
- oracle
- 마이플랫폼
- DB
- 자바
- JEUS
- Tomcat
- MIP
- 기타소득
Archives
- Today
- Total
어느 가을날의 전환점
JAVA|Error - Incompatible operand types Integer and int 본문
JDK 1.5 에서는 Autoboxing 기능이 추가됐다.
Object와 primitive type 간에 형변환이 자동이다.
- Incompatible operand types Boolean and boolean
- Incompatible operand types Integer and int.
<오류발생> : Incompatible operand types Integer and int.
if (ds.getColumnAsInteger(i, "SELE_CHEK") == 1) {
<해결방안> : JDK 1.4에서는 Autoboxing 기능이 없어서 명시적 변환 필요.
if (ds.getColumnAsInteger(i, "SELE_CHEK").intValue() == 1) {
'Development' 카테고리의 다른 글
용어|SPM(Standard and Procedure Manual, 표준 및 절차 메뉴얼) (0) | 2010.05.04 |
---|---|
용어|테일러링(Tailoring) (0) | 2010.05.04 |
DEBUG|Debugging Tools for Windows - Overview (0) | 2010.01.22 |
JavaScript|브라우저(Browser) 닫기(Close) 스크립트 (0) | 2010.01.15 |
JAVA|Function - AddComma() : 숫자 자릿수 콤마 추가 (0) | 2009.12.29 |
Comments