{"id":53,"date":"2023-07-24T20:51:46","date_gmt":"2023-07-24T11:51:46","guid":{"rendered":"https:\/\/memoryarchive.blog\/?p=53"},"modified":"2024-06-19T20:56:29","modified_gmt":"2024-06-19T11:56:29","slug":"%ec%bd%94%ed%8b%80%eb%a6%b0kotlin-%ed%91%9c%ec%a4%80-%ed%95%a8%ec%88%98%eb%a1%9c-list-map-set-%ec%83%9d%ec%84%b1%ed%95%98%ea%b8%b0","status":"publish","type":"post","link":"https:\/\/memoryarchive.blog\/ko\/%ec%bd%94%ed%8b%80%eb%a6%b0kotlin-%ed%91%9c%ec%a4%80-%ed%95%a8%ec%88%98%eb%a1%9c-list-map-set-%ec%83%9d%ec%84%b1%ed%95%98%ea%b8%b0\/","title":{"rendered":"\ucf54\ud2c0\ub9b0 \ud45c\uc900 \ud568\uc218\ub85c List, Map, Set \uc0dd\uc131\ud558\uae30"},"content":{"rendered":"\n<p>\ucf54\ud2c0\ub9b0\uc744 \uc0ac\uc6a9\ud558\uba74 List, Map, Set\uc744 \uc790\ub3d9\uc73c\ub85c \uc0dd\uc131\ud574\uc8fc\ub294 \ud45c\uc900 \ud568\uc218\ub4e4\uc744 \uc4f8 \uc218 \uc788\ub2e4.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\ucf54\ud2c0\ub9b0 Array<\/h4>\n\n\n\n<p>\ub2e4\uc74c\uc740 \ucf54\ud2c0\ub9b0\uc758 Array \uc0dd\uc131 \ud568\uc218\ub4e4.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>arrayOf()&nbsp;\u2014&nbsp;kotlin.Array<\/li>\n\n\n\n<li>intArrayOf()&nbsp;\u2014&nbsp;kotlin.IntArray<\/li>\n\n\n\n<li>emptyArrayOf&lt;T&gt;()<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>val array = arrayOf(1,2,3)     \/\/ Kotlin.Array\nval intArray = IntArrayOf(1,2,3)  \/\/ Kotlin.IntArray\nval emptyArray = emptyArray&lt;Int&gt;()<\/code><\/pre>\n\n\n\n<p>\uadf8\ub9ac\uace0 Kotlin.Library.kt\uc5d0 \ub530\ub974\uba74 Array\ub97c \uc0dd\uc131\ud560 \uc218 \uc788\ub294 \ud568\uc218\ub4e4\uc740 \ub2e4\uc74c\uacfc \uac19\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>fun &lt;reified @PureReifiable T&gt; arrayOfNulls(size: Int): Array&lt;T?&gt;\n\nfun doubleArrayOf(vararg elements: Double): DoubleArray\n\nfun floatArrayOf(vararg elements: Float): FloatArray\n\nfun longArrayOf(vararg elements: Long): LongArray\n\nfun intArrayOf(vararg elements: Int): IntArray\n\nfun charArrayOf(vararg elements: Char): CharArray\n\nfun shortArrayOf(vararg elements: Short): ShortArray\n\nfun byteArrayOf(vararg elements: Byte): ByteArray\n\nfun booleanArrayOf(vararg elements: Boolean): BooleanArray<\/code><\/pre>\n\n\n\n<p>\ud568\uc218 \uc774\ub984 \ubfd0\ub9cc \uc544\ub2c8\ub77c return \uc790\ub8cc\ud615 \ub610\ud55c \ub208\uc5ec\uaca8\ubcf4\ub294 \uac83\uc774 \uc911\uc694\ud55c\ub370 IntArray, CharArray \ub4f1\uc740 Array\uc640 \uac19\uc740 \ud074\ub798\uc2a4\uac00 \uc544\ub2c8\uae30 \ub54c\ubb38\uc774\ub2e4.&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/i0.wp.com\/blog.kakaocdn.net\/dn\/yemaJ\/btqAuNeD0E2\/gIzksUUTuNYVhzKVfhyMMK\/img.png?w=900&amp;ssl=1\" alt=\"\"\/><\/figure>\n\n\n\n<p>\uc815\uc758\ub85c \ub4e4\uc5b4\uac00\ubcf4\uba74 Array\uac00 \ud655\uc7a5\ub41c \ud074\ub798\uc2a4\uac00 \uc544\ub2d8\uc744 \uc54c \uc218 \uc788\ub2e4.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\ucf54\ud2c0\ub9b0 List<\/h4>\n\n\n\n<p>\ucf54\ud2c0\ub9b0\uc5d0\uc11c List \uac1d\uccb4\ub97c \ub9cc\ub4e4\uae30 \uc704\ud55c \ud568\uc218\ub294 \ub2e4\uc74c\uacfc \uac19\ub2e4.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>\ud568\uc218<\/td><td>\uc790\ub8cc\ud615<\/td><\/tr><tr><td>arrayListOf<\/td><td>ArrayList&lt;T&gt;<\/td><\/tr><tr><td>emptyList<\/td><td>List&lt;T&gt;<\/td><\/tr><tr><td>listOf<\/td><td>List&lt;T&gt;<\/td><\/tr><tr><td>listOfNotNull<\/td><td>List&lt;T&gt;<\/td><\/tr><tr><td>mutableListOf<\/td><td>MutableList&lt;T&gt;<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>\uc544\ub798\ub294 List \uc608\uc2dc \uc18c\uc2a4 \ucf54\ub4dc<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>val list = listOf(1, 2, 3)\nval list = arrayListOf(1, 2, 3)\nval list = mutableListOf(\"a\", \"b\", \"c\")\n\n\/\/ \ube44\uc5b4\uc788\ub294 List \uc0dd\uc131\nval list = listOf&lt;Int&gt;()\nval list = arrayListOf&lt;Double&gt;()\nval list = mutableListOf&lt;String&gt;()\nval list: List&lt;Int&gt; = emptyList()\n\n\/\/ null \uc0bd\uc785 \uac00\ub2a5 \uc5ec\ubd80\nval list = listOf(\"a\", null)                  \/\/ &#91;a, null]\nval list = arrayListOf(\"a\", null)             \/\/ &#91;a, null]\nval list = mutableListOf(\"a\", null)           \/\/ &#91;a, null]\nval list = listOfNotNull&lt;String&gt;(\"a\", null)   \/\/ &#91;a]\nval list = listOfNotNull(\"a\", null)           \/\/ &#91;a]<\/code><\/pre>\n\n\n\n<p>\ucf54\ud2c0\ub9b0 \ubb38\uc11c\uc5d0 \ub530\ub974\uba74 listOfNotNull\uc740 null\uc744 \uc81c\uc678\ud55c \uc77d\uae30 \uc804\uc6a9\uc758 List\ub97c \ubc18\ud658\ud55c\ub2e4.<\/p>\n\n\n\n<p>\ub530\ub77c\uc11c listOf\ub85c List\ub97c \uc0dd\uc131\ud558\uba74 null\uc744 \ud3ec\ud568\ud560 \uc218 \uc788\uc9c0\ub9cc listOfNotNull\uc740 \uadf8\ub807\uc9c0 \uc54a\ub2e4\ub294 \uac83\uc744 \ud655\uc778\ud560 \uc218 \uc788\ub2e4.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\ucf54\ud2c0\ub9b0 Map<\/h4>\n\n\n\n<p>\ucf54\ud2c0\ub9b0\uc5d0\uc11c Map \uac1d\uccb4\ub97c \ub9cc\ub4e4\uae30 \uc704\ud55c \ud568\uc218\ub294 \ub2e4\uc74c\uacfc \uac19\ub2e4.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>\ud568\uc218<\/td><td>\uc790\ub8cc\ud615<\/td><\/tr><tr><td>mapOf<\/td><td>Map&lt;K,V&gt;<\/td><\/tr><tr><td>hashMapOf<\/td><td>HashMap&lt;K, V&gt;<\/td><\/tr><tr><td>linkedMapOf<\/td><td>LinkedHashMap&lt;K, V&gt;<\/td><\/tr><tr><td>sortedMapOf<\/td><td>SortedMap&lt;K, V&gt;<\/td><\/tr><tr><td>mutableMapOf<\/td><td>MutableMap&lt;K, V&gt;<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>\ucf54\ud2c0\ub9b0\uc740 JavaScript\uc5d0\uc11c \uc4f0\uc774\ub294 linkStringMapOf\uc640 stringMapOf \uae30\ub2a5 \ub610\ud55c \uac00\uc9c0\uace0 \uc788\ub2e4.<br><br>\uc544\ub798\ub294 Map \uc608\uc2dc \uc18c\uc2a4 \ucf54\ub4dc<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>val map = mapOf(\"b\" to 2, \"a\" to 1)          \/\/ {b=2, a=1}\n\nval map = hashMapOf(\"b\" to 2, \"a\" to 1)      \/\/ {a=1, b=2}\n\nval map = linkedMapOf(\"b\" to 2, \"a\" to 1)    \/\/ {b=2, a=1}\n\nval map = sortedMapOf(\"b\" to 2, \"a\" to 1)    \/\/ {a=1, b=2}\n\nval map = mutableMapOf(\"b\" to 2, \"a\" to 1)   \/\/ {b=2, a=1}<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">\ucf54\ud2c0\ub9b0 Set<\/h4>\n\n\n\n<p>\ucf54\ud2c0\ub9b0\uc5d0\uc11c Set \uac1d\uccb4\ub97c \ub9cc\ub4e4\uae30 \uc704\ud55c \ud568\uc218\ub294 \ub2e4\uc74c\uacfc \uac19\ub2e4.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>\ud568\uc218<\/td><td>\uc790\ub8cc\ud615<\/td><\/tr><tr><td>setOf<\/td><td>Set&lt;T&gt;<\/td><\/tr><tr><td>hashSetOf<\/td><td>HashSet&lt;T&gt;<\/td><\/tr><tr><td>linkedSetOf<\/td><td>LinkedHashSet&lt;T&gt;<\/td><\/tr><tr><td>sortedSetOf<\/td><td>TreeSet&lt;T&gt;<\/td><\/tr><tr><td>mutableSetOf<\/td><td>MutableSet&lt;T&gt;<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>\ucf54\ud2c0\ub9b0\uc740 Map\uacfc \ub9c8\ucc2c\uac00\uc9c0\ub85c JavaScript\uc5d0\uc11c \uc4f0\uc774\ub294&nbsp;linkedSetOf\uc640&nbsp;setOf&nbsp;\uae30\ub2a5 \ub610\ud55c \uac00\uc9c0\uace0 \uc788\ub2e4.<\/p>\n\n\n\n<p>\uc544\ub798\ub294 Set \uc608\uc2dc \uc18c\uc2a4 \ucf54\ub4dc<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>val set = setOf(3, 5, 1)          \/\/ &#91;3, 5, 1]\n\nval set = hashSetOf(3, 5, 1)      \/\/ &#91;5, 1, 3]\n\nval set = linkedSetOf(3, 5, 1)    \/\/ &#91;3, 5, 1]\n\nval set = sortedSetOf(3, 5, 1)    \/\/ &#91;1, 3, 5]\n\nval set = mutableSetOf(3, 5, 1)   \/\/ &#91;3, 5, 1]<\/code><\/pre>\n\n\n\n<p>\uc774\ub85c\uc368 \ucf54\ud2c0\ub9b0\uc758 List, Map, Set\uc5d0 \ub300\ud55c \uc0ac\uc6a9\ubc95\uc744 \uac04\ub7b5\ud558\uac8c \ud6d1\uc5b4\ubcf4\uc558\ub2e4.<\/p>\n\n\n\n<p>\uc790\uc138\ud55c \ub0b4\uc6a9\uc740 \uc544\ub798\uc758 \ucf54\ud2c0\ub9b0&nbsp;\uacf5\uc2dd \ubb38\uc11c&nbsp;\ub9c1\ud06c\ub97c \ud1b5\ud574 \ud655\uc778\uc774 \uac00\ub2a5\ud558\ub2e4.<\/p>\n\n\n\n<p><a href=\"https:\/\/kotlinlang.org\/api\/latest\/jvm\/stdlib\/kotlin.collections\/index.html\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/kotlinlang.org\/api\/latest\/jvm\/stdlib\/kotlin.collections\/index.html<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\ucf54\ud2c0\ub9b0\uc744 \uc0ac\uc6a9\ud558\uba74 List, Map, Set\uc744 \uc790\ub3d9\uc73c\ub85c \uc0dd\uc131\ud574\uc8fc\ub294 \ud45c\uc900 \ud568\uc218\ub4e4\uc744 \uc4f8 \uc218 \uc788\ub2e4. \ucf54\ud2c0\ub9b0 Array \ub2e4\uc74c\uc740 \ucf54\ud2c0\ub9b0\uc758 Array \uc0dd\uc131 \ud568\uc218\ub4e4. \uadf8\ub9ac\uace0 Kotlin.Library.kt\uc5d0 \ub530\ub974\uba74 Array\ub97c \uc0dd\uc131\ud560 \uc218 \uc788\ub294 \ud568\uc218\ub4e4\uc740 \ub2e4\uc74c\uacfc \uac19\ub2e4. \ud568\uc218 \uc774\ub984 \ubfd0\ub9cc \uc544\ub2c8\ub77c return \uc790\ub8cc\ud615 \ub610\ud55c \ub208\uc5ec\uaca8\ubcf4\ub294 \uac83\uc774 \uc911\uc694\ud55c\ub370 IntArray, CharArray \ub4f1\uc740 Array\uc640 \uac19\uc740 \ud074\ub798\uc2a4\uac00 \uc544\ub2c8\uae30 \ub54c\ubb38\uc774\ub2e4.&nbsp; \uc815\uc758\ub85c \ub4e4\uc5b4\uac00\ubcf4\uba74 Array\uac00 \ud655\uc7a5\ub41c \ud074\ub798\uc2a4\uac00 \uc544\ub2d8\uc744 \uc54c \uc218 &#8230; <a title=\"\ucf54\ud2c0\ub9b0 \ud45c\uc900 \ud568\uc218\ub85c List, Map, Set \uc0dd\uc131\ud558\uae30\" class=\"read-more\" href=\"https:\/\/memoryarchive.blog\/ko\/%ec%bd%94%ed%8b%80%eb%a6%b0kotlin-%ed%91%9c%ec%a4%80-%ed%95%a8%ec%88%98%eb%a1%9c-list-map-set-%ec%83%9d%ec%84%b1%ed%95%98%ea%b8%b0\/\" aria-label=\"Read more about \ucf54\ud2c0\ub9b0 \ud45c\uc900 \ud568\uc218\ub85c List, Map, Set \uc0dd\uc131\ud558\uae30\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"cybocfi_hide_featured_image":"","_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-53","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\ucf54\ud2c0\ub9b0 \ud45c\uc900 \ud568\uc218\ub85c List, Map, Set \uc0dd\uc131\ud558\uae30 - \ucd94\uc5b5 \uac8c\uc784 \uc544\uce74\uc774\ube0c<\/title>\n<meta name=\"description\" content=\"\ucf54\ud2c0\ub9b0\uc744 \uc0ac\uc6a9\ud558\uba74 List, Map, Set\uc744 \uc790\ub3d9\uc73c\ub85c \uc0dd\uc131\ud574\uc8fc\ub294 \ud45c\uc900 \ud568\uc218\ub4e4\uc744 \uc4f8 \uc218 \uc788\ub2e4. \ucf54\ud2c0\ub9b0\uc758 List, Map, Set\uc5d0 \ub300\ud55c \uc0ac\uc6a9\ubc95\uc744 \uac04\ub7b5\ud558\uac8c \ud6d1\uc5b4\ubcf4\uc790.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/memoryarchive.blog\/ko\/\ucf54\ud2c0\ub9b0kotlin-\ud45c\uc900-\ud568\uc218\ub85c-list-map-set-\uc0dd\uc131\ud558\uae30\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:locale:alternate\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ucf54\ud2c0\ub9b0 \ud45c\uc900 \ud568\uc218\ub85c List, Map, Set \uc0dd\uc131\ud558\uae30 - \ucd94\uc5b5 \uac8c\uc784 \uc544\uce74\uc774\ube0c\" \/>\n<meta property=\"og:description\" content=\"\ucf54\ud2c0\ub9b0\uc744 \uc0ac\uc6a9\ud558\uba74 List, Map, Set\uc744 \uc790\ub3d9\uc73c\ub85c \uc0dd\uc131\ud574\uc8fc\ub294 \ud45c\uc900 \ud568\uc218\ub4e4\uc744 \uc4f8 \uc218 \uc788\ub2e4. \ucf54\ud2c0\ub9b0\uc758 List, Map, Set\uc5d0 \ub300\ud55c \uc0ac\uc6a9\ubc95\uc744 \uac04\ub7b5\ud558\uac8c \ud6d1\uc5b4\ubcf4\uc790.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/memoryarchive.blog\/ko\/\ucf54\ud2c0\ub9b0kotlin-\ud45c\uc900-\ud568\uc218\ub85c-list-map-set-\uc0dd\uc131\ud558\uae30\/\" \/>\n<meta property=\"og:site_name\" content=\"\ucd94\uc5b5 \uac8c\uc784 \uc544\uce74\uc774\ube0c\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-24T11:51:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-06-19T11:56:29+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/i0.wp.com\/blog.kakaocdn.net\/dn\/yemaJ\/btqAuNeD0E2\/gIzksUUTuNYVhzKVfhyMMK\/img.png?w=900&amp;ssl=1\" \/>\n<meta name=\"author\" content=\"Gamer\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"Gamer\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"2\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/memoryarchive.blog\/%ec%bd%94%ed%8b%80%eb%a6%b0kotlin-%ed%91%9c%ec%a4%80-%ed%95%a8%ec%88%98%eb%a1%9c-list-map-set-%ec%83%9d%ec%84%b1%ed%95%98%ea%b8%b0\/\",\"url\":\"https:\/\/memoryarchive.blog\/%ec%bd%94%ed%8b%80%eb%a6%b0kotlin-%ed%91%9c%ec%a4%80-%ed%95%a8%ec%88%98%eb%a1%9c-list-map-set-%ec%83%9d%ec%84%b1%ed%95%98%ea%b8%b0\/\",\"name\":\"\ucf54\ud2c0\ub9b0 \ud45c\uc900 \ud568\uc218\ub85c List, Map, Set \uc0dd\uc131\ud558\uae30 - \ucd94\uc5b5 \uac8c\uc784 \uc544\uce74\uc774\ube0c\",\"isPartOf\":{\"@id\":\"https:\/\/memoryarchive.blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/memoryarchive.blog\/%ec%bd%94%ed%8b%80%eb%a6%b0kotlin-%ed%91%9c%ec%a4%80-%ed%95%a8%ec%88%98%eb%a1%9c-list-map-set-%ec%83%9d%ec%84%b1%ed%95%98%ea%b8%b0\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/memoryarchive.blog\/%ec%bd%94%ed%8b%80%eb%a6%b0kotlin-%ed%91%9c%ec%a4%80-%ed%95%a8%ec%88%98%eb%a1%9c-list-map-set-%ec%83%9d%ec%84%b1%ed%95%98%ea%b8%b0\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i0.wp.com\/blog.kakaocdn.net\/dn\/yemaJ\/btqAuNeD0E2\/gIzksUUTuNYVhzKVfhyMMK\/img.png?w=900&amp;ssl=1\",\"datePublished\":\"2023-07-24T11:51:46+00:00\",\"dateModified\":\"2024-06-19T11:56:29+00:00\",\"author\":{\"@id\":\"https:\/\/memoryarchive.blog\/#\/schema\/person\/2ee84c4cb6b4b6df9d5122a5b52876f9\"},\"description\":\"\ucf54\ud2c0\ub9b0\uc744 \uc0ac\uc6a9\ud558\uba74 List, Map, Set\uc744 \uc790\ub3d9\uc73c\ub85c \uc0dd\uc131\ud574\uc8fc\ub294 \ud45c\uc900 \ud568\uc218\ub4e4\uc744 \uc4f8 \uc218 \uc788\ub2e4. \ucf54\ud2c0\ub9b0\uc758 List, Map, Set\uc5d0 \ub300\ud55c \uc0ac\uc6a9\ubc95\uc744 \uac04\ub7b5\ud558\uac8c \ud6d1\uc5b4\ubcf4\uc790.\",\"breadcrumb\":{\"@id\":\"https:\/\/memoryarchive.blog\/%ec%bd%94%ed%8b%80%eb%a6%b0kotlin-%ed%91%9c%ec%a4%80-%ed%95%a8%ec%88%98%eb%a1%9c-list-map-set-%ec%83%9d%ec%84%b1%ed%95%98%ea%b8%b0\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/memoryarchive.blog\/%ec%bd%94%ed%8b%80%eb%a6%b0kotlin-%ed%91%9c%ec%a4%80-%ed%95%a8%ec%88%98%eb%a1%9c-list-map-set-%ec%83%9d%ec%84%b1%ed%95%98%ea%b8%b0\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/memoryarchive.blog\/%ec%bd%94%ed%8b%80%eb%a6%b0kotlin-%ed%91%9c%ec%a4%80-%ed%95%a8%ec%88%98%eb%a1%9c-list-map-set-%ec%83%9d%ec%84%b1%ed%95%98%ea%b8%b0\/#primaryimage\",\"url\":\"https:\/\/i0.wp.com\/blog.kakaocdn.net\/dn\/yemaJ\/btqAuNeD0E2\/gIzksUUTuNYVhzKVfhyMMK\/img.png?w=900&amp;ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/blog.kakaocdn.net\/dn\/yemaJ\/btqAuNeD0E2\/gIzksUUTuNYVhzKVfhyMMK\/img.png?w=900&amp;ssl=1\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/memoryarchive.blog\/%ec%bd%94%ed%8b%80%eb%a6%b0kotlin-%ed%91%9c%ec%a4%80-%ed%95%a8%ec%88%98%eb%a1%9c-list-map-set-%ec%83%9d%ec%84%b1%ed%95%98%ea%b8%b0\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/memoryarchive.blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ucf54\ud2c0\ub9b0 \ud45c\uc900 \ud568\uc218\ub85c List, Map, Set \uc0dd\uc131\ud558\uae30\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/memoryarchive.blog\/#website\",\"url\":\"https:\/\/memoryarchive.blog\/\",\"name\":\"\ucd94\uc5b5 \uac8c\uc784 \uc544\uce74\uc774\ube0c\",\"description\":\"\ubb34\ub8cc \uc628\ub77c\uc778 \uac8c\uc784\uacfc \ucd94\uc5b5\uc758 \ud50c\ub798\uc2dc \uac8c\uc784\uc744 \ubaa8\uc740 \uac8c\uc784 \uc544\uce74\uc774\ube0c. \ub2e4\uc591\ud55c \uc7a5\ub974\uc758 \uac8c\uc784\uc744 \ubc14\ub85c \ud50c\ub808\uc774\ud558\uace0 \uacf5\ub7b5\uacfc \ud301\uc744 \ud655\uc778\ud574\ubcf4\uc138\uc694.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/memoryarchive.blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/memoryarchive.blog\/#\/schema\/person\/2ee84c4cb6b4b6df9d5122a5b52876f9\",\"name\":\"Gamer\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/memoryarchive.blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/38554c4c7c589691e503ec1c51befee11fbd0537800cd276ed5a34d3fa42324f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/38554c4c7c589691e503ec1c51befee11fbd0537800cd276ed5a34d3fa42324f?s=96&d=mm&r=g\",\"caption\":\"Gamer\"},\"sameAs\":[\"http:\/\/158.247.210.254\"],\"url\":\"https:\/\/memoryarchive.blog\/ko\/author\/wpauser8oojqfcs\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\ucf54\ud2c0\ub9b0 \ud45c\uc900 \ud568\uc218\ub85c List, Map, Set \uc0dd\uc131\ud558\uae30 - \ucd94\uc5b5 \uac8c\uc784 \uc544\uce74\uc774\ube0c","description":"\ucf54\ud2c0\ub9b0\uc744 \uc0ac\uc6a9\ud558\uba74 List, Map, Set\uc744 \uc790\ub3d9\uc73c\ub85c \uc0dd\uc131\ud574\uc8fc\ub294 \ud45c\uc900 \ud568\uc218\ub4e4\uc744 \uc4f8 \uc218 \uc788\ub2e4. \ucf54\ud2c0\ub9b0\uc758 List, Map, Set\uc5d0 \ub300\ud55c \uc0ac\uc6a9\ubc95\uc744 \uac04\ub7b5\ud558\uac8c \ud6d1\uc5b4\ubcf4\uc790.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/memoryarchive.blog\/ko\/\ucf54\ud2c0\ub9b0kotlin-\ud45c\uc900-\ud568\uc218\ub85c-list-map-set-\uc0dd\uc131\ud558\uae30\/","og_locale":"ko_KR","og_type":"article","og_title":"\ucf54\ud2c0\ub9b0 \ud45c\uc900 \ud568\uc218\ub85c List, Map, Set \uc0dd\uc131\ud558\uae30 - \ucd94\uc5b5 \uac8c\uc784 \uc544\uce74\uc774\ube0c","og_description":"\ucf54\ud2c0\ub9b0\uc744 \uc0ac\uc6a9\ud558\uba74 List, Map, Set\uc744 \uc790\ub3d9\uc73c\ub85c \uc0dd\uc131\ud574\uc8fc\ub294 \ud45c\uc900 \ud568\uc218\ub4e4\uc744 \uc4f8 \uc218 \uc788\ub2e4. \ucf54\ud2c0\ub9b0\uc758 List, Map, Set\uc5d0 \ub300\ud55c \uc0ac\uc6a9\ubc95\uc744 \uac04\ub7b5\ud558\uac8c \ud6d1\uc5b4\ubcf4\uc790.","og_url":"https:\/\/memoryarchive.blog\/ko\/\ucf54\ud2c0\ub9b0kotlin-\ud45c\uc900-\ud568\uc218\ub85c-list-map-set-\uc0dd\uc131\ud558\uae30\/","og_site_name":"\ucd94\uc5b5 \uac8c\uc784 \uc544\uce74\uc774\ube0c","article_published_time":"2023-07-24T11:51:46+00:00","article_modified_time":"2024-06-19T11:56:29+00:00","og_image":[{"url":"https:\/\/i0.wp.com\/blog.kakaocdn.net\/dn\/yemaJ\/btqAuNeD0E2\/gIzksUUTuNYVhzKVfhyMMK\/img.png?w=900&amp;ssl=1"}],"author":"Gamer","twitter_card":"summary_large_image","twitter_misc":{"\uae00\uc4f4\uc774":"Gamer","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"2\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/memoryarchive.blog\/%ec%bd%94%ed%8b%80%eb%a6%b0kotlin-%ed%91%9c%ec%a4%80-%ed%95%a8%ec%88%98%eb%a1%9c-list-map-set-%ec%83%9d%ec%84%b1%ed%95%98%ea%b8%b0\/","url":"https:\/\/memoryarchive.blog\/%ec%bd%94%ed%8b%80%eb%a6%b0kotlin-%ed%91%9c%ec%a4%80-%ed%95%a8%ec%88%98%eb%a1%9c-list-map-set-%ec%83%9d%ec%84%b1%ed%95%98%ea%b8%b0\/","name":"\ucf54\ud2c0\ub9b0 \ud45c\uc900 \ud568\uc218\ub85c List, Map, Set \uc0dd\uc131\ud558\uae30 - \ucd94\uc5b5 \uac8c\uc784 \uc544\uce74\uc774\ube0c","isPartOf":{"@id":"https:\/\/memoryarchive.blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/memoryarchive.blog\/%ec%bd%94%ed%8b%80%eb%a6%b0kotlin-%ed%91%9c%ec%a4%80-%ed%95%a8%ec%88%98%eb%a1%9c-list-map-set-%ec%83%9d%ec%84%b1%ed%95%98%ea%b8%b0\/#primaryimage"},"image":{"@id":"https:\/\/memoryarchive.blog\/%ec%bd%94%ed%8b%80%eb%a6%b0kotlin-%ed%91%9c%ec%a4%80-%ed%95%a8%ec%88%98%eb%a1%9c-list-map-set-%ec%83%9d%ec%84%b1%ed%95%98%ea%b8%b0\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/blog.kakaocdn.net\/dn\/yemaJ\/btqAuNeD0E2\/gIzksUUTuNYVhzKVfhyMMK\/img.png?w=900&amp;ssl=1","datePublished":"2023-07-24T11:51:46+00:00","dateModified":"2024-06-19T11:56:29+00:00","author":{"@id":"https:\/\/memoryarchive.blog\/#\/schema\/person\/2ee84c4cb6b4b6df9d5122a5b52876f9"},"description":"\ucf54\ud2c0\ub9b0\uc744 \uc0ac\uc6a9\ud558\uba74 List, Map, Set\uc744 \uc790\ub3d9\uc73c\ub85c \uc0dd\uc131\ud574\uc8fc\ub294 \ud45c\uc900 \ud568\uc218\ub4e4\uc744 \uc4f8 \uc218 \uc788\ub2e4. \ucf54\ud2c0\ub9b0\uc758 List, Map, Set\uc5d0 \ub300\ud55c \uc0ac\uc6a9\ubc95\uc744 \uac04\ub7b5\ud558\uac8c \ud6d1\uc5b4\ubcf4\uc790.","breadcrumb":{"@id":"https:\/\/memoryarchive.blog\/%ec%bd%94%ed%8b%80%eb%a6%b0kotlin-%ed%91%9c%ec%a4%80-%ed%95%a8%ec%88%98%eb%a1%9c-list-map-set-%ec%83%9d%ec%84%b1%ed%95%98%ea%b8%b0\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/memoryarchive.blog\/%ec%bd%94%ed%8b%80%eb%a6%b0kotlin-%ed%91%9c%ec%a4%80-%ed%95%a8%ec%88%98%eb%a1%9c-list-map-set-%ec%83%9d%ec%84%b1%ed%95%98%ea%b8%b0\/"]}]},{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/memoryarchive.blog\/%ec%bd%94%ed%8b%80%eb%a6%b0kotlin-%ed%91%9c%ec%a4%80-%ed%95%a8%ec%88%98%eb%a1%9c-list-map-set-%ec%83%9d%ec%84%b1%ed%95%98%ea%b8%b0\/#primaryimage","url":"https:\/\/i0.wp.com\/blog.kakaocdn.net\/dn\/yemaJ\/btqAuNeD0E2\/gIzksUUTuNYVhzKVfhyMMK\/img.png?w=900&amp;ssl=1","contentUrl":"https:\/\/i0.wp.com\/blog.kakaocdn.net\/dn\/yemaJ\/btqAuNeD0E2\/gIzksUUTuNYVhzKVfhyMMK\/img.png?w=900&amp;ssl=1"},{"@type":"BreadcrumbList","@id":"https:\/\/memoryarchive.blog\/%ec%bd%94%ed%8b%80%eb%a6%b0kotlin-%ed%91%9c%ec%a4%80-%ed%95%a8%ec%88%98%eb%a1%9c-list-map-set-%ec%83%9d%ec%84%b1%ed%95%98%ea%b8%b0\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/memoryarchive.blog\/"},{"@type":"ListItem","position":2,"name":"\ucf54\ud2c0\ub9b0 \ud45c\uc900 \ud568\uc218\ub85c List, Map, Set \uc0dd\uc131\ud558\uae30"}]},{"@type":"WebSite","@id":"https:\/\/memoryarchive.blog\/#website","url":"https:\/\/memoryarchive.blog\/","name":"\ucd94\uc5b5 \uac8c\uc784 \uc544\uce74\uc774\ube0c","description":"\ubb34\ub8cc \uc628\ub77c\uc778 \uac8c\uc784\uacfc \ucd94\uc5b5\uc758 \ud50c\ub798\uc2dc \uac8c\uc784\uc744 \ubaa8\uc740 \uac8c\uc784 \uc544\uce74\uc774\ube0c. \ub2e4\uc591\ud55c \uc7a5\ub974\uc758 \uac8c\uc784\uc744 \ubc14\ub85c \ud50c\ub808\uc774\ud558\uace0 \uacf5\ub7b5\uacfc \ud301\uc744 \ud655\uc778\ud574\ubcf4\uc138\uc694.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/memoryarchive.blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"ko-KR"},{"@type":"Person","@id":"https:\/\/memoryarchive.blog\/#\/schema\/person\/2ee84c4cb6b4b6df9d5122a5b52876f9","name":"Gamer","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/memoryarchive.blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/38554c4c7c589691e503ec1c51befee11fbd0537800cd276ed5a34d3fa42324f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/38554c4c7c589691e503ec1c51befee11fbd0537800cd276ed5a34d3fa42324f?s=96&d=mm&r=g","caption":"Gamer"},"sameAs":["http:\/\/158.247.210.254"],"url":"https:\/\/memoryarchive.blog\/ko\/author\/wpauser8oojqfcs\/"}]}},"jetpack_sharing_enabled":true,"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/memoryarchive.blog\/ko\/wp-json\/wp\/v2\/posts\/53","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/memoryarchive.blog\/ko\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/memoryarchive.blog\/ko\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/memoryarchive.blog\/ko\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/memoryarchive.blog\/ko\/wp-json\/wp\/v2\/comments?post=53"}],"version-history":[{"count":4,"href":"https:\/\/memoryarchive.blog\/ko\/wp-json\/wp\/v2\/posts\/53\/revisions"}],"predecessor-version":[{"id":57,"href":"https:\/\/memoryarchive.blog\/ko\/wp-json\/wp\/v2\/posts\/53\/revisions\/57"}],"wp:attachment":[{"href":"https:\/\/memoryarchive.blog\/ko\/wp-json\/wp\/v2\/media?parent=53"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/memoryarchive.blog\/ko\/wp-json\/wp\/v2\/categories?post=53"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/memoryarchive.blog\/ko\/wp-json\/wp\/v2\/tags?post=53"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}