Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Java
- JavaScript
- 배열
- Android
- 국제화
- 생성자
- Graphic
- 안드로이드
- 클래스
- 전화걸기
- Menu
- layout
- struts2
- Spring
- 어노테이션
- 메서드
- 메소드
- 오버로딩
- paint
- Eclips
- 이클립스
- JSP
- oracle
- OGNL
- 기본
- AWT
- mybatis
- 에러페이지
- HTML
- 예외처리
Archives
- Today
- Total
목록증감 연산자 (1)
note
증감 연산자
public class Opr07 { public static void main(String[] args){ int a=10, b=10; System.out.println("====증가 연산자===="); //선행처리 System.out.println(++a); //후행처리 System.out.println(b++); System.out.println(b); int c=20, d=20; System.out.println("====감소 연산자===="); //선행처리 System.out.println(--c); //후행처리 System.out.println(d--); System.out.println(d); } } ====증가 연산자==== 11 10 11 ====감소 연산자==== 19 20 19
자바/연산자
2011. 12. 13. 11:01