목록string (1)
냠냠냠
java) String 클래스 메소드 정리
참고) jdk 문서 : https://docs.oracle.com/javase/9/docs/api/index.html?overview-summary.html Java SE 9 & JDK 9 docs.oracle.com - concat : 문자열 연결 1 2 3 4 5 6 7 8 9 10 11 public class SelfTestClass { public static void main(String[] args) { String st1 = "coffee"; String st2 = "bread"; String st3 = st1.concat(st2); System.out.println(st3); // 결과: coffeebread } } http://colorscripter.com/info#e" target="..
언어/JAVA
2019. 12. 8. 16:11