일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- html youtube
- #C++ has~a
- hyperledger transaction
- #binary
- #C++ 연산자함수오버로딩
- html charset
- relative path
- git flow
- #다차원포인터
- html object
- html5 new tag
- 토큰경제
- #JAVASCRIPT
- html plug-in
- #2차원배열
- #bubbleSort
- docker example
- 하이퍼레저패브릭
- border-box
- #자바상속#자바이즈어#is~a
- html video
- #성적관리프로그램
- #3차원배열
- mac terminal command
- html code
- #1차원배열
- html multimedia
- #android activity
- html id
- #CallByAddress
Archives
- Today
- Total
목록#string#문자열 (1)
A sentimental robot
String class
import java.util.Scanner; public class Hello { public static void main(String[] args) { Scanner sc=new Scanner(System.in); String str=new String(); // 문자열 클래스는 레퍼런스타입이므로 동적할당으로(힙 영역에) 객체 생성해준다. str=sc.next(); System.out.println(str); } } public class Hello { public static void main(String[] args) { String str=new String("superman"); // 문자열객체 생성과 동시에 초기화 , 처음부터 값 넣기 System.out.println(str); } }..
Java
2017. 12. 28. 11:27