05 Oct 2021 -
2 minute read
1๋ถํฐ 10๊น์ง์ ํน์ ๊ท์น์ด ์ ์ฉ๋ ์์ด ์ถ๋ ฅํ๊ธฐ - ์ฝ์์ฐฝ์ 2, 5, 8 ์ถ๋ ฅํ๊ธฐ while let output = ""; let cnt = 1; while (cnt <= 10) { if (cnt % 3 == 2) { if (cnt < 8) { output += cnt + ", "; } else { output +=...
Continue reading...
04 Oct 2021 -
Less than 1 minute read
DOM DOM : Document Object Model, ๋ฌธ์ ๊ฐ์ฒด ๋ชจ๋ธ XML์ด๋ HTML๋ฌธ์์ ์ ๊ทผํ๊ธฐ ์ํ ์ผ์ข
์ ์ธํฐํ์ด์ค Document ๋ฉ์๋ document.getElementsByTagName(ํ๊ทธ์ด๋ฆ)[์ธ๋ฑ์ค๋ฒํธ] : ํด๋น ์ธ๋ฑ์ค ๋ฒํธ๋ฅผ ๊ฐ์ง ํ๊ทธ ์ด๋ฆ์ ์์๋ฅผ ์ ํ document.getElementById(์์ด๋) : ํด๋น ์์ด๋์ ์์๋ฅผ ์ ํ document.getElementsByClassName(ํด๋์ค์ด๋ฆ) : ํด๋น ์ธ๋ฑ์ค ๋ฒํธ๋ฅผ ๊ฐ์ง ํด๋์ค ์ด๋ฆ์ ์์๋ฅผ ์ ํ document.querySelector(์ ํ์) : ํด๋น ์ ํ์๋ก ์ ํ๋ ์์ ์ค...
Continue reading...
04 Oct 2021 -
1 minute read
ArrayList java.util ํจํค์ง์์ ์ ๊ณต, List ์ธํฐํ์ด์ค ์์๋ฐ์ ํด๋์ค ํฌ๊ธฐ๊ฐ ๊ฐ๋ณ์ ์ผ๋ก ๋ณํ๋ ์ ํ ๋ฆฌ์คํธ ์ผ๋ฐ ๋ฐฐ์ด๊ณผ ๊ฐ์ด ์์ฐจ๋ฆฌ์คํธ์ด๋ฉฐ ์ธ๋ฑ์ค๋ก ๋ด๋ถ ๊ฐ์ฒด ๊ด๋ฆฌ ๋ฐฐ์ด์ ํ๋ฒ ์์ฑ๋๋ฉด ํฌ๊ธฐ๊ฐ ๋ณํ์ง ์์ง๋ง, ArrayList๋ ๊ฐ์ฒด๊ฐ ์ถ๊ฐ๋์ด ์ ์ฅ์ฉ๋(capacity)์ ์ด๊ณผํ๋ค๋ฉด ์๋์ผ๋ก ๋ถ์กฑํ ํฌ๊ธฐ๋งํผ ์ ์ฅ์ฉ๋์ด ๋์ด๋จ ArrayList์ ํฌ๊ธฐ ๋์ ์ผ๋ก ๋ณ๊ฒฝ๋จ > List์ Size๋ฅผ ์ด๊ธฐํ ํ ํ์ ์์ ArrayList arrayList...
Continue reading...
03 Oct 2021 -
4 minute read
๊ฐ์ฒด ๋ฐฐ์ด ๊ธฐ๋ณธ ์๋ฃํ ๋ฐฐ์ด : ์ ์ธ๊ณผ ๋์์ ๋ฐฐ์ด์ ํฌ๊ธฐ๋งํผ ๋ฉ๋ชจ๋ฆฌ ํ ๋น ๊ฐ์ฒด ๋ฐฐ์ด : ์์๊ฐ ๋๋ ๊ฐ์ฒด์ ์ฃผ์๊ฐ ๋ค์ด๊ฐ ๋ฉ๋ชจ๋ฆฌ๋ง ํ ๋น(4or8 byte, null๋ก ์ด๊ธฐํ), ๊ฐ ์์ ๊ฐ์ฒด๋ ์์ฑํ์ฌ ์ ์ฅํด์ผ ํจ ex) Book.java public class Book { private String title; private String author; public Book(String title, String author) { this.title...
Continue reading...
02 Oct 2021 -
2 minute read
์ฌ๊ทํจ์ (Recursive Function) ์๊ธฐ ์ค์ค๋ก๋ฅผ ํธ์ถํ๋ ํจ์ def func(count): if count>0: print(count, 'first') func(count-1) print(count, 'second') func(5) ### ์ถ๋ ฅ๊ฒฐ๊ณผ ### 5 first ### 4 first ### 3 first ### 2 first ### 1 first ### 0 second ### 1 second ### 2 second ### 3 second ### 4 second ###...
Continue reading...