목록링크모음/java (4)
올해는 머신러닝이다.
java9 빠르게 핵심만
http://www.popit.kr/%eb%82%98%eb%a7%8c-%eb%aa%a8%eb%a5%b4%ea%b3%a0-%ec%9e%88%eb%8d%98-java9-%eb%b9%a0%eb%a5%b4%ea%b2%8c-%eb%b3%b4%ea%b8%b0/
링크모음/java
2017. 11. 7. 07:35
java trim() 이 안먹힐때..
분명 비어있는 데 trim 을 했을 경우 안없어지는 경우가 발생할 수 있다. 그럴경우 아래 함수를 실행해보자.public static String trimAdvanced(String value) { Objects.requireNonNull(value); int strLength = value.length(); int len = value.length(); int st = 0; char[] val = value.toCharArray(); if (strLength == 0) { return ""; } while ((st 0) || (len < strLength)) ? value.substring(st, len) : value; }
링크모음/java
2017. 9. 28. 10:26
대표적인 소프트웨어 아키텍쳐 10가지
https://mingrammer.com/translation-10-common-software-architectural-patterns-in-a-nutshell
링크모음/java
2017. 9. 15. 11:43
DTO와 VO 차이점..
http://mommoo.tistory.com/61
링크모음/java
2017. 8. 9. 11:39