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 | 29 | 30 |
Tags
- sendRedirect
- 한글깨짐
- 요구사항정의서
- https://www.inflearn.com/course/lecture?courseslug=%ea%b9%80%ec%98%81%ed%95%9c%ec%9d%98-%ec%8b%a4%ec%a0%84-%ec%9e%90%eb%b0%94-%ea%b8%b0%eb%b3%b8%ed%8e%b8&unitid=194690
- GET방식
- POST방식
- Servlet
- webserver #WAS #ServerApp
- Break
- 피그마
- 매핑 #
- xml
- WAS
- 톰캣
- Dispatcher
- Request
- 다형성 #부모타입 #자식타입
- Forwarding
- Spring MVC
- CONTINUE
- 김영한
- 화면정의서
- https://www.inflearn.com/course/lecture?courseslug=%ea%b9%80%ec%98%81%ed%95%9c%ec%9d%98-%ec%8b%a4%ec%a0%84-%ec%9e%90%eb%b0%94-%ea%b8%b0%eb%b3%b8%ed%8e%b8&unitid=194711
- https://www.inflearn.com/course/lecture?courseslug=%ea%b9%80%ec%98%81%ed%95%9c%ec%9d%98-%ec%8b%a4%ec%a0%84-%ec%9e%90%eb%b0%94-%ea%b8%b0%eb%b3%b8%ed%8e%b8&unitid=194709&category=questiondetail&tab=community&q=1314387
- JSON형식의 response
- while문
Archives
- Today
- Total
목록2024/04/01 (1)
Step it up now
형 변환 casting
public static void main(String[] args) { long maxIntValue = 2147483647; //int 의 최고값 - long에 담을 수 있음 long maxIntOver = 2147483648L; //int 의 최고값 +1 = int값에 초과됨 int intValue = 0; intValue = (int) maxIntValue; //형변환 System.out.println("maxIntValue casting = " + intValue); //2147483647 intValue = (int) maxIntOver; //형변환 //오버플로우 -2147483648 //int 범위 (-2,147,483,648 ~ 2,147,483,647)를 초과하니 int의 가장 작은 수가..
개인공부/java
2024. 4. 1. 20:38