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
- Forwarding
- 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
- webserver #WAS #ServerApp
- POST방식
- Request
- while문
- Dispatcher
- 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=194690
- 화면정의서
- 다형성 #부모타입 #자식타입
- 피그마
- xml
- WAS
- 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
- 김영한
- 매핑 #
- sendRedirect
- Servlet
- GET방식
- JSON형식의 response
- Spring MVC
- 한글깨짐
- 요구사항정의서
- Break
- 톰캣
Archives
- Today
- Total
목록수업/java (1)
Step it up now
230927 String
▶ s1==s2 String s1 = "안녕"; String s2 = "안녕"; System.out.println(s1==s2);//true s1과 s2는 "안녕"을 가리키고 있어 가리키는 것이 같으면 주소번지가 같다 결과값 true => 주소번지가 같은지 묻는것 ▶ s1.equals(s3) String s1 = "안녕"; String s3 = new String("안녕"); String s4 = new String("안녕"); System.out.println(s1.equals(s3));//true System.out.println(s1==s4);//false System.out.println(s1.equals(s4));//true s1과 s2가 가리키는 문자열이 같다는 것
수업/java
2023. 10. 1. 02:51