[Java] ๋ฐฐ์ด ๋ณต์ฌํ๊ธฐ
โถ ๋ฐฐ์ด ๋ณต์ฌํ๊ธฐ ๊ธฐ์กด ๋ฐฐ์ด๊ณผ ์๋ฃํ ๋ฐ ๋ฐฐ์ด ํฌ๊ธฐ๊ฐ ๋๊ฐ์ ๋ฐฐ์ด์ ์๋ก ๋ง๋ค๊ฑฐ๋ ๋ฐฐ์ด์ ๋ชจ๋ ์์์ ์๋ฃ๊ฐ ๊ฝ ์ฐจ์ ๋ ํฐ ๋ฐฐ์ด์ ๋ง๋ค์ด ๊ธฐ์กด ๋ฐฐ์ด์ ์ ์ฅ๋ ์๋ฃ๋ฅผ ๊ฐ์ ธ์ค๋ ค ํ ๋ ๋ฐฐ์ด์ ๋ณต์ฌํ๋ค. System.arraycopy( ) ๋ฉ์๋๋ฅผ ์ฌ์ฉํ๋ค. package array; public class ArrayCopy { public static void main(String[] args) { int[] array1 = { 10, 20, 30, 40, 50 }; int[] array2 = { 1, 2, 3, 4, 5 }; // ๋ณต์ฌํ ๋ฐฐ์ด, ๋ณต์ฌํ ์ฒซ ์์น, ๋์ ๋ฐฐ์ด, ๋ถ์ฌ ๋ฃ์ ์ฒซ ์์น, ๋ณต์ฌํ ์์ ๊ฐ์ System.arraycopy(array1, 0, array2, 1, 4); for (int..
2021. 2. 19.