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 |
Tags
- Oracle
- input box
- Modeling
- jquery
- 오라클
- 미라지
- iTunes
- 한글
- 태그를 입력해 주세요.
- java
- Download
- SELECT UPDATE
- DATABASE
- 다운로드
- html
- 개발자
- oracle not exists
- oracle not in
- M480
- 10g
- eclipse
- 설치
- update
- jqeury
- 2NE1
- 검색
- 링크
- error
- javascript
- 이클립스
Archives
- Today
- Total
목록java/custom function (1)
not set
String Class 의 replace 매서드를 구현하라
replace 를 사용하지 않고 replace 매서드를 구현하라. 최대한 해보았는데 버그가 있을 수도 있다. package my.run; import my.util.myUtil; public class Run {public static void main(String args[]){myUtil me = new myUtil();String tmp = "STATIC VOID MAIN";String result= "";// my useful functionresult = me.myReplace(tmp, "S", "SUPER");System.out.println(tmp + " => " + result);}} 실행용 클래스 package my.util; /** * * myUtil Class * * @author m..
java/custom function
2013. 8. 7. 00:56