๐ฃ์ํ์ฝ๋ฉ ๊ฐ์๐ฃ
JAVA1 - 6.1. ๋ฐ์ดํฐ์ ์ฐ์ฐ
https://www.youtube.com/watch?v=WWAicgDYBDg&list=PLuHgQVnccGMAIluRRVsC1e79ri-dwnBmR&index=14
JAVA1 - 6.2. ๋ฐ์ดํฐ ํ์
https://www.youtube.com/watch?v=_D13-YBz4qk&list=PLuHgQVnccGMAIluRRVsC1e79ri-dwnBmR&index=15
JAVA1 - 6.3. ์ซ์์ ์ฐ์ฐ
https://www.youtube.com/watch?v=3atGGWQYaiU&list=PLuHgQVnccGMAIluRRVsC1e79ri-dwnBmR&index=16
JAVA1 - 6.4. ๋ฌธ์์ด์ ํํ
https://www.youtube.com/watch?v=DCa3qo8Pm6E&list=PLuHgQVnccGMAIluRRVsC1e79ri-dwnBmR&index=17
JAVA1 - 6.5. ๋ฌธ์์ด ๋ค๋ฃจ๊ธฐ
https://www.youtube.com/watch?v=y20Fhlseh4w&list=PLuHgQVnccGMAIluRRVsC1e79ri-dwnBmR&index=18
โ๏ธ ๋ฐ์ดํฐ ํ์ ๋ณ ๋ฐ์ดํฐ ์ฒ๋ฆฌ ๋ฐฉ์์ด ๋ค๋ฅด๋ค
- ์ด๋ค ์ข ๋ฅ์ ๋ฐ์ดํฐ ํ์ ์ด ์กด์ฌํ๋์ง ์์๋ณด๊ธฐ
- ๋ฐ์ดํฐ ํ์ ๋ณ๋ก ์ด๋ค ์ฐ์ฐ ๋ฐฉ๋ฒ์ด ์กด์ฌํ๋์ง ์์๋ณด๊ธฐ
์ซ์
โจ Operator (์ฐ์ฐ์)
System.out.println(10 + 2); // 12
System.out.println(10 - 2); // 8
System.out.println(10 * 2); // 20
System.out.println(10 / 2); // 5
โจ Math class
System.out.println(Math.PI); // 3.141592653589793
System.out.println(Math.floor(Math.PI)); // 3.0
System.out.println(Math.ceil(Math.PI)); // 4.0
· Math.PI : ํ์ด ์์
· Math.floor() : ์ซ์ ๋ด๋ฆผ
· Math.ceil() : ์ซ์ ์ฌ๋ฆผ
๋ฌธ์์ด
โจ Character vs. String
System.out.println('H'); // Character
System.out.println("Hello World"); // String : Character ๋ชจ์
· ๋ฌธ์ ≠ ๋ฌธ์์ด
โจ ์ค๋ฐ๊พธ๊ธฐ & ํน์๋ฌธ์
// ์ค๋ฐ๊ฟ (new line)
System.out.println("Hello\nWorld");
// ํน์๋ฌธ์ (escape)
System.out.println("Hello \"World\"");
โจ length() & replace()
System.out.println("Hello World".length()); // 11
System.out.println("Hello [name]".replace("[name]", "alsrud")); // Hello alsrud
· length() : ๋ฌธ์์ด ๊ธธ์ด
· replace() : ๋ฌธ์์ด ์นํ
'Spring > JAVA' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
Java ์์ธ (Try-Catch / Try-Catch-Finally / Try with Resource Statements / Throws) (0) | 2023.09.26 |
---|---|
์ฑ ๋ง๋ค๊ธฐ 2 - ๋ฐฐ๋น๊ธ ๊ณ์ฐ๊ธฐ (์ ์ด๋ฌธ, ๋ฐฐ์ด, ๋ฉ์๋, ํด๋์ค, ์ธ์คํด์ค) (0) | 2023.09.25 |
์ฑ ๋ง๋ค๊ธฐ 1 - ๋ฐฐ๋น๊ธ ๊ณ์ฐ๊ธฐ (๋ณ์, ์ ๋ ฅ๊ฐ) (0) | 2023.09.22 |
๋ณ์ (0) | 2023.09.21 |
Hello World & Java ๋์ ์๋ฆฌ (0) | 2023.09.20 |