Notice
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 |
29 | 30 |
Tags
- might have p.p
- 명세기반테스트
- C++
- 제5인격
- 형변환
- html
- metascore
- ISTQB
- by any chance
- 코로나19
- 명절 표현
- by until
- continue to
- happen to
- counldn't have
- sort함수
- 변수
- if조건절
- Realtime Rendering
- I'm glad
- know
- relif
- UE4
- end up ing
- java
- gameQA
- keep -ing
- 게임QA
- for ing
- it's a good thing
Archives
- Today
- Total
목록charater (1)
Records rather than Memories
[java] 문자열
문자열은 String이라는 데이터 타입으로 선언해주면 된다. * 문자는 character로 선언한다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 package org.javatutorials.variable; public class StringDemo { public static void main(String[] args) { // TODO Auto-generated method stub String first; // 문자열 first = "whale log"; // String first = "whale log";도 가능 String a, b; a = "coding"; b = "everybody"; System.out.println(a+b); } } Colored by ..
Software/JAVA
2019. 10. 1. 18:25