{"id":43485,"date":"2024-11-28T12:31:35","date_gmt":"2024-11-28T12:31:35","guid":{"rendered":"https:\/\/atmokpo.com\/w\/?p=43485"},"modified":"2024-11-28T12:31:35","modified_gmt":"2024-11-28T12:31:35","slug":"dart-%ec%96%b8%ec%96%b4%ea%b0%95%ec%a2%8c-009-%ea%b0%9d%ec%b2%b4%ec%a7%80%ed%96%a5-%ed%94%84%eb%a1%9c%ea%b7%b8%eb%9e%98%eb%b0%8d-oop-%ec%86%8c%ea%b0%9c-%ec%83%81%ec%86%8d%ea%b3%bc-%eb%8b%a4","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/43485\/","title":{"rendered":"[Dart \uc5b8\uc5b4\uac15\uc88c]  009. \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d (OOP) \uc18c\uac1c, \uc0c1\uc18d\uacfc \ub2e4\ud615\uc131"},"content":{"rendered":"<p><body><\/p>\n<article>\n<header>\n<p>\uc800\uc790: \ub2f9\uc2e0\uc758 \uc774\ub984<\/p>\n<p>\uc791\uc131\uc77c: YYYY-MM-DD<\/p>\n<\/header>\n<section>\n<h2>1. \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d (OOP)\ub780?<\/h2>\n<p>\uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d(Object-Oriented Programming, OOP)\uc740 \ud504\ub85c\uadf8\ub7a8\uc744 &#8216;\uac1d\uccb4&#8217;\ub85c \uad6c\uc131\ud558\uc5ec \uc18c\ud504\ud2b8\uc6e8\uc5b4\ub97c \uc124\uacc4\ud558\uace0 \uac1c\ubc1c\ud558\ub294 \ud504\ub85c\uadf8\ub798\ubc0d \ud328\ub7ec\ub2e4\uc784\uc785\ub2c8\ub2e4. \uc774 \uac1d\uccb4\ub294 \ub370\uc774\ud130\uc640 \ub370\uc774\ud130\uc5d0 \ub300\ud55c \ucc98\ub9ac\ub97c \ud3ec\ud568\ud55c \uba54\uc11c\ub4dc\ub85c \uad6c\uc131\ub429\ub2c8\ub2e4. OOP\uc758 \uc8fc\uc694 \uc6d0\uce59\uc73c\ub85c\ub294 \ucea1\uc290\ud654(Encapsulation), \uc0c1\uc18d(Inheritance), \ub2e4\ud615\uc131(Polymorphism) \ubc0f \ucd94\uc0c1\ud654(Abstraction)\uac00 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<p>OOP\uc758 \uc7a5\uc810\uc740 \ucf54\ub4dc\uc758 \uc7ac\uc0ac\uc6a9\uc131, \uac00\ub3c5\uc131 \ubc0f \uc720\uc9c0\ubcf4\uc218\uc131\uc744 \ub192\uc5ec\uc90d\ub2c8\ub2e4. Dart \uc5b8\uc5b4\ub294 OOP\ub97c \uc798 \uc9c0\uc6d0\ud558\uba70, \uc774\ub7ec\ud55c \uac1c\ub150\uc744 \uc190\uc27d\uac8c \uc801\uc6a9\ud560 \uc218 \uc788\ub294 \uac15\ub825\ud55c \uae30\ub2a5\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4.<\/p>\n<\/section>\n<section>\n<h2>2. Dart\uc758 OOP \uae30\ubcf8 \uac1c\ub150<\/h2>\n<p>Dart\uc5d0\uc11c \ud074\ub798\uc2a4(class)\ub294 \uac1d\uccb4\ub97c \uc0dd\uc131\ud558\uae30 \uc704\ud55c \uccad-print\ub85c, \ud074\ub798\uc2a4 \ub0b4\ubd80\uc5d0 \ubcc0\uc218(\uc18d\uc131)\uc640 \uba54\uc11c\ub4dc(\ud568\uc218)\ub97c \uc815\uc758\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uac1d\uccb4\ub294 \ud074\ub798\uc2a4\uc758 \uc778\uc2a4\ud134\uc2a4(instance)\ub85c, \ud074\ub798\uc2a4\uc758 \uad6c\uc870\uc5d0 \ub530\ub77c \ub2e4\uc591\ud55c \uc18d\uc131\uacfc \ud589\ub3d9\uc744 \uac00\uc9d1\ub2c8\ub2e4.<\/p>\n<p>\uc544\ub798\ub294 \uac04\ub2e8\ud55c Dart \ud074\ub798\uc2a4\uc758 \uc608\uc81c\uc785\ub2c8\ub2e4:<\/p>\n<pre><code class=\"dart\">class Animal {\n    String name;\n    int age;\n\n    Animal(this.name, this.age);\n\n    void describe() {\n        print('\uc774\ub984: $name, \ub098\uc774: $age');\n    }\n}\n\nvoid main() {\n    Animal dog = Animal('\uac15\uc544\uc9c0', 3);\n    dog.describe();  \/\/ \ucd9c\ub825: \uc774\ub984: \uac15\uc544\uc9c0, \ub098\uc774: 3\n}<\/code><\/pre>\n<p>\uc704 \ucf54\ub4dc\ub294 Animal\uc774\ub77c\ub294 \ud074\ub798\uc2a4\ub97c \uc815\uc758\ud558\uace0, \ud574\ub2f9 \ud074\ub798\uc2a4\uc758 \uc778\uc2a4\ud134\uc2a4\ub97c \uc0dd\uc131\ud558\uc5ec describe \uba54\uc11c\ub4dc\ub97c \ud638\ucd9c\ud558\ub294 \uc608\uc2dc\uc785\ub2c8\ub2e4.<\/p>\n<\/section>\n<section>\n<h2>3. \uc0c1\uc18d (Inheritance)<\/h2>\n<p>\uc0c1\uc18d\uc740 \uae30\uc874 \ud074\ub798\uc2a4(\ubd80\ubaa8 \ud074\ub798\uc2a4 \ub610\ub294 \uc288\ud37c \ud074\ub798\uc2a4)\uc758 \uc18d\uc131\uacfc \uba54\uc11c\ub4dc\ub97c \uc0c8\ub85c\uc6b4 \ud074\ub798\uc2a4(\uc790\uc2dd \ud074\ub798\uc2a4 \ub610\ub294 \uc11c\ube0c \ud074\ub798\uc2a4)\uc5d0 \ubb3c\ub824\uc8fc\ub294 \uacfc\uc815\uc785\ub2c8\ub2e4. \uc774\ub97c \ud1b5\ud574 \ucf54\ub4dc \uc7ac\uc0ac\uc6a9\uc131\uc744 \ub192\uc774\uace0, \uacc4\uce35 \uad6c\uc870\ub97c \ud615\uc131\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<p>Dart\uc5d0\uc11c \uc0c1\uc18d\uc744 \uad6c\ud604\ud558\ub294 \ubc29\ubc95\uc740 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4:<\/p>\n<pre><code class=\"dart\">class Animal {\n    String name;\n\n    Animal(this.name);\n\n    void makeSound() {\n        print('$name\uc774 \uc18c\ub9ac\ub97c \ub0b8\ub2e4.');\n    }\n}\n\nclass Dog extends Animal {\n    Dog(String name) : super(name);\n\n    void makeSound() {\n        print('$name\uc774 \uba4d\uba4d\uac70\ub9ac\ub2e4.');\n    }\n}\n\nvoid main() {\n    Dog dog = Dog('\ubc14\ub451\uc774');\n    dog.makeSound();  \/\/ \ucd9c\ub825: \ubc14\ub451\uc774\uac00 \uba4d\uba4d\uac70\ub9ac\ub2e4.\n}<\/code><\/pre>\n<p>\uc704 \uc608\uc81c\uc5d0\uc11c Dog \ud074\ub798\uc2a4\ub294 Animal \ud074\ub798\uc2a4\ub97c \uc0c1\uc18d\ubc1b\uc544 \uae30\uc874\uc758 makeSound \uba54\uc11c\ub4dc\ub97c \uc624\ubc84\ub77c\uc774\ub4dc(\uc7ac\uc815\uc758)\ud569\ub2c8\ub2e4. \uc774\ub97c \ud1b5\ud574 \uac1c\ub294 \uace0\uc720\uc758 \uc18c\ub9ac\ub97c \ub0bc \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<\/section>\n<section>\n<h2>4. \ub2e4\ud615\uc131 (Polymorphism)<\/h2>\n<p>\ub2e4\ud615\uc131\uc740 \ub3d9\uc77c\ud55c \uba54\uc11c\ub4dc \uc774\ub984\uc774 \ub2e4\ub978 \ud074\ub798\uc2a4\uc5d0\uc11c \uc11c\ub85c \ub2e4\ub974\uac8c \ub3d9\uc791\ud558\ub3c4\ub85d \ud558\ub294 OOP\uc758 \ud2b9\uc131\uc785\ub2c8\ub2e4. \uc0c1\uc18d\uacfc \ud568\uaed8 \uc0ac\uc6a9\ub418\ub294 \uacbd\uc6b0, \ubd80\ubaa8 \ud074\ub798\uc2a4\uc758 \uba54\uc11c\ub4dc\ub97c \uc790\uc2dd \ud074\ub798\uc2a4\uc5d0\uc11c \uc7ac\uc815\uc758\ud558\uc5ec \ub2e4\ud615\uc131\uc744 \uad6c\ud604\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<p>\uc544\ub798 \uc608\uc81c\ub294 \ub2e4\ud615\uc131\uc744 \uc124\uba85\ud569\ub2c8\ub2e4:<\/p>\n<pre><code class=\"dart\">class Animal {\n    void makeSound() {\n        print('\ub3d9\ubb3c\uc774 \uc18c\ub9ac\ub97c \ub0b8\ub2e4.');\n    }\n}\n\nclass Cat extends Animal {\n    @override\n    void makeSound() {\n        print('\uace0\uc591\uc774\uac00 \uc57c\uc639\uac70\ub9b0\ub2e4.');\n    }\n}\n\nclass Dog extends Animal {\n    @override\n    void makeSound() {\n        print('\uac1c\uac00 \uba4d\uba4d\uac70\ub9b0\ub2e4.');\n    }\n}\n\nvoid main() {\n    List&lt;Animal&gt; animals = [Cat(), Dog()];\n\n    for (var animal in animals) {\n        animal.makeSound();\n    }\n    \/\/ \ucd9c\ub825:\n    \/\/ \uace0\uc591\uc774\uac00 \uc57c\uc639\uac70\ub9b0\ub2e4.\n    \/\/ \uac1c\uac00 \uba4d\uba4d\uac70\ub9b0\ub2e4.\n}<\/code><\/pre>\n<p>\uc774 \uc608\uc81c\uc5d0\uc11c \ub3d9\ubb3c\uc758 \ubaa9\ub85d\uc744 \ub9cc\ub4e4\uc5b4 \uac01 \ub3d9\ubb3c\uc758 makeSound \uba54\uc11c\ub4dc\ub97c \ud638\ucd9c\ud569\ub2c8\ub2e4. \uac01 \ub3d9\ubb3c \ud074\ub798\uc2a4\ub294 \ubd80\ubaa8 \ud074\ub798\uc2a4\uc758 \uba54\uc11c\ub4dc\ub97c \uc7ac\uc815\uc758\ud558\uc5ec \uace0\uc720\uc758 \uc18c\ub9ac\ub97c \ub0b4\uac8c \ub429\ub2c8\ub2e4. \ub2e4\ud615\uc131\uc744 \ud1b5\ud574 \ucf54\ub4dc\uc758 \uc720\uc5f0\uc131\uacfc \ud655\uc7a5\uc131\uc744 \ub192\uc77c \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<\/section>\n<section>\n<h2>5. \uacb0\ub860<\/h2>\n<p>\uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d(OOP)\uc740 \ud504\ub85c\uadf8\ub7a8 \uad6c\uc870\ub97c \ubcf4\ub2e4 \ud6a8\uc728\uc801\uc73c\ub85c \ub9cc\ub4e4\uace0, \ucf54\ub4dc\uc758 \uc7ac\uc0ac\uc6a9\uc131 \ubc0f \uc720\uc9c0\ubcf4\uc218\uc131\uc744 \ub192\uc774\ub294 \ub370 \uae30\uc5ec\ud569\ub2c8\ub2e4. Dart \uc5b8\uc5b4\ub294 OOP \ud328\ub7ec\ub2e4\uc784\uc744 \uc9c0\uc6d0\ud558\uc5ec \uac1c\ubc1c\uc790\uac00 \uac1d\uccb4, \uc0c1\uc18d \ubc0f \ub2e4\ud615\uc131\uacfc \uac19\uc740 \uac1c\ub150\uc744 \uc27d\uac8c \uad6c\ud604\ud560 \uc218 \uc788\ub3c4\ub85d \ub3d5\uc2b5\ub2c8\ub2e4.<\/p>\n<p>\uc774\ubc88 \uae00\uc5d0\uc11c\ub294 OOP\uc758 \uae30\ubcf8 \uac1c\ub150\uacfc Dart\uc5d0\uc11c\uc758 \uad6c\ud604 \ubc29\ubc95\uc744 \uc124\uba85\ud558\uc600\uc2b5\ub2c8\ub2e4. \uc774\ub7ec\ud55c OOP \uc6d0\uce59\uc744 \uc801\uc6a9\ud558\uba74 \ubcf4\ub2e4 \ud6a8\uc728\uc801\uc774\uace0 \uae54\ub054\ud55c \uc18c\ud504\ud2b8\uc6e8\uc5b4 \uc124\uacc4\uac00 \uac00\ub2a5\ud574\uc9d1\ub2c8\ub2e4. \ud5a5\ud6c4 Dart\ub97c \ud65c\uc6a9\ud558\uc5ec \ub2e4\uc591\ud55c \ud504\ub85c\uc81d\ud2b8\ub97c \uc9c4\ud589\ud558\uba74\uc11c OOP\uc758 \ud798\uc744 \ub290\uaef4\ubcf4\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4.<\/p>\n<\/section>\n<\/article>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\uc800\uc790: \ub2f9\uc2e0\uc758 \uc774\ub984 \uc791\uc131\uc77c: YYYY-MM-DD 1. \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d (OOP)\ub780? \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d(Object-Oriented Programming, OOP)\uc740 \ud504\ub85c\uadf8\ub7a8\uc744 &#8216;\uac1d\uccb4&#8217;\ub85c \uad6c\uc131\ud558\uc5ec \uc18c\ud504\ud2b8\uc6e8\uc5b4\ub97c \uc124\uacc4\ud558\uace0 \uac1c\ubc1c\ud558\ub294 \ud504\ub85c\uadf8\ub798\ubc0d \ud328\ub7ec\ub2e4\uc784\uc785\ub2c8\ub2e4. \uc774 \uac1d\uccb4\ub294 \ub370\uc774\ud130\uc640 \ub370\uc774\ud130\uc5d0 \ub300\ud55c \ucc98\ub9ac\ub97c \ud3ec\ud568\ud55c \uba54\uc11c\ub4dc\ub85c \uad6c\uc131\ub429\ub2c8\ub2e4. OOP\uc758 \uc8fc\uc694 \uc6d0\uce59\uc73c\ub85c\ub294 \ucea1\uc290\ud654(Encapsulation), \uc0c1\uc18d(Inheritance), \ub2e4\ud615\uc131(Polymorphism) \ubc0f \ucd94\uc0c1\ud654(Abstraction)\uac00 \uc788\uc2b5\ub2c8\ub2e4. OOP\uc758 \uc7a5\uc810\uc740 \ucf54\ub4dc\uc758 \uc7ac\uc0ac\uc6a9\uc131, \uac00\ub3c5\uc131 \ubc0f \uc720\uc9c0\ubcf4\uc218\uc131\uc744 \ub192\uc5ec\uc90d\ub2c8\ub2e4. Dart \uc5b8\uc5b4\ub294 OOP\ub97c \uc798 \uc9c0\uc6d0\ud558\uba70, \uc774\ub7ec\ud55c \uac1c\ub150\uc744 \uc190\uc27d\uac8c &hellip; <a href=\"https:\/\/atmokpo.com\/w\/43485\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;[Dart \uc5b8\uc5b4\uac15\uc88c]  009. \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d (OOP) \uc18c\uac1c, \uc0c1\uc18d\uacfc \ub2e4\ud615\uc131&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[17],"tags":[],"class_list":["post-43485","post","type-post","status-publish","format-standard","hentry","category-17"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Dart \uc5b8\uc5b4\uac15\uc88c] 009. \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d (OOP) \uc18c\uac1c, \uc0c1\uc18d\uacfc \ub2e4\ud615\uc131 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/atmokpo.com\/w\/43485\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Dart \uc5b8\uc5b4\uac15\uc88c] 009. \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d (OOP) \uc18c\uac1c, \uc0c1\uc18d\uacfc \ub2e4\ud615\uc131 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"\uc800\uc790: \ub2f9\uc2e0\uc758 \uc774\ub984 \uc791\uc131\uc77c: YYYY-MM-DD 1. \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d (OOP)\ub780? \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d(Object-Oriented Programming, OOP)\uc740 \ud504\ub85c\uadf8\ub7a8\uc744 &#8216;\uac1d\uccb4&#8217;\ub85c \uad6c\uc131\ud558\uc5ec \uc18c\ud504\ud2b8\uc6e8\uc5b4\ub97c \uc124\uacc4\ud558\uace0 \uac1c\ubc1c\ud558\ub294 \ud504\ub85c\uadf8\ub798\ubc0d \ud328\ub7ec\ub2e4\uc784\uc785\ub2c8\ub2e4. \uc774 \uac1d\uccb4\ub294 \ub370\uc774\ud130\uc640 \ub370\uc774\ud130\uc5d0 \ub300\ud55c \ucc98\ub9ac\ub97c \ud3ec\ud568\ud55c \uba54\uc11c\ub4dc\ub85c \uad6c\uc131\ub429\ub2c8\ub2e4. OOP\uc758 \uc8fc\uc694 \uc6d0\uce59\uc73c\ub85c\ub294 \ucea1\uc290\ud654(Encapsulation), \uc0c1\uc18d(Inheritance), \ub2e4\ud615\uc131(Polymorphism) \ubc0f \ucd94\uc0c1\ud654(Abstraction)\uac00 \uc788\uc2b5\ub2c8\ub2e4. OOP\uc758 \uc7a5\uc810\uc740 \ucf54\ub4dc\uc758 \uc7ac\uc0ac\uc6a9\uc131, \uac00\ub3c5\uc131 \ubc0f \uc720\uc9c0\ubcf4\uc218\uc131\uc744 \ub192\uc5ec\uc90d\ub2c8\ub2e4. Dart \uc5b8\uc5b4\ub294 OOP\ub97c \uc798 \uc9c0\uc6d0\ud558\uba70, \uc774\ub7ec\ud55c \uac1c\ub150\uc744 \uc190\uc27d\uac8c &hellip; \ub354 \ubcf4\uae30 &quot;[Dart \uc5b8\uc5b4\uac15\uc88c] 009. \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d (OOP) \uc18c\uac1c, \uc0c1\uc18d\uacfc \ub2e4\ud615\uc131&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/43485\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-28T12:31:35+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"1\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/43485\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/43485\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"[Dart \uc5b8\uc5b4\uac15\uc88c] 009. \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d (OOP) \uc18c\uac1c, \uc0c1\uc18d\uacfc \ub2e4\ud615\uc131\",\"datePublished\":\"2024-11-28T12:31:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/43485\/\"},\"wordCount\":40,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"\ud50c\ub7ec\ud130 \uac15\uc88c\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/43485\/\",\"url\":\"https:\/\/atmokpo.com\/w\/43485\/\",\"name\":\"[Dart \uc5b8\uc5b4\uac15\uc88c] 009. \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d (OOP) \uc18c\uac1c, \uc0c1\uc18d\uacfc \ub2e4\ud615\uc131 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-28T12:31:35+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/43485\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/43485\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/43485\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Dart \uc5b8\uc5b4\uac15\uc88c] 009. \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d (OOP) \uc18c\uac1c, \uc0c1\uc18d\uacfc \ub2e4\ud615\uc131\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Dart \uc5b8\uc5b4\uac15\uc88c] 009. \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d (OOP) \uc18c\uac1c, \uc0c1\uc18d\uacfc \ub2e4\ud615\uc131 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","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:\/\/atmokpo.com\/w\/43485\/","og_locale":"ko_KR","og_type":"article","og_title":"[Dart \uc5b8\uc5b4\uac15\uc88c] 009. \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d (OOP) \uc18c\uac1c, \uc0c1\uc18d\uacfc \ub2e4\ud615\uc131 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"\uc800\uc790: \ub2f9\uc2e0\uc758 \uc774\ub984 \uc791\uc131\uc77c: YYYY-MM-DD 1. \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d (OOP)\ub780? \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d(Object-Oriented Programming, OOP)\uc740 \ud504\ub85c\uadf8\ub7a8\uc744 &#8216;\uac1d\uccb4&#8217;\ub85c \uad6c\uc131\ud558\uc5ec \uc18c\ud504\ud2b8\uc6e8\uc5b4\ub97c \uc124\uacc4\ud558\uace0 \uac1c\ubc1c\ud558\ub294 \ud504\ub85c\uadf8\ub798\ubc0d \ud328\ub7ec\ub2e4\uc784\uc785\ub2c8\ub2e4. \uc774 \uac1d\uccb4\ub294 \ub370\uc774\ud130\uc640 \ub370\uc774\ud130\uc5d0 \ub300\ud55c \ucc98\ub9ac\ub97c \ud3ec\ud568\ud55c \uba54\uc11c\ub4dc\ub85c \uad6c\uc131\ub429\ub2c8\ub2e4. OOP\uc758 \uc8fc\uc694 \uc6d0\uce59\uc73c\ub85c\ub294 \ucea1\uc290\ud654(Encapsulation), \uc0c1\uc18d(Inheritance), \ub2e4\ud615\uc131(Polymorphism) \ubc0f \ucd94\uc0c1\ud654(Abstraction)\uac00 \uc788\uc2b5\ub2c8\ub2e4. OOP\uc758 \uc7a5\uc810\uc740 \ucf54\ub4dc\uc758 \uc7ac\uc0ac\uc6a9\uc131, \uac00\ub3c5\uc131 \ubc0f \uc720\uc9c0\ubcf4\uc218\uc131\uc744 \ub192\uc5ec\uc90d\ub2c8\ub2e4. Dart \uc5b8\uc5b4\ub294 OOP\ub97c \uc798 \uc9c0\uc6d0\ud558\uba70, \uc774\ub7ec\ud55c \uac1c\ub150\uc744 \uc190\uc27d\uac8c &hellip; \ub354 \ubcf4\uae30 \"[Dart \uc5b8\uc5b4\uac15\uc88c] 009. \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d (OOP) \uc18c\uac1c, \uc0c1\uc18d\uacfc \ub2e4\ud615\uc131\"","og_url":"https:\/\/atmokpo.com\/w\/43485\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-28T12:31:35+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"1\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/43485\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/43485\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"[Dart \uc5b8\uc5b4\uac15\uc88c] 009. \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d (OOP) \uc18c\uac1c, \uc0c1\uc18d\uacfc \ub2e4\ud615\uc131","datePublished":"2024-11-28T12:31:35+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/43485\/"},"wordCount":40,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["\ud50c\ub7ec\ud130 \uac15\uc88c"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/43485\/","url":"https:\/\/atmokpo.com\/w\/43485\/","name":"[Dart \uc5b8\uc5b4\uac15\uc88c] 009. \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d (OOP) \uc18c\uac1c, \uc0c1\uc18d\uacfc \ub2e4\ud615\uc131 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-28T12:31:35+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/43485\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/43485\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/43485\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"[Dart \uc5b8\uc5b4\uac15\uc88c] 009. \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d (OOP) \uc18c\uac1c, \uc0c1\uc18d\uacfc \ub2e4\ud615\uc131"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":43483,"url":"https:\/\/atmokpo.com\/w\/43483\/","url_meta":{"origin":43485,"position":0},"title":"[Dart \uc5b8\uc5b4\uac15\uc88c]  008. \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d (OOP) \uc18c\uac1c, \ud074\ub798\uc2a4\uc640 \uac1d\uccb4","author":"root","date":"2024\ub144 11\uc6d4 28\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 \uc791\uc131\uc77c: 2024\ub144 11\uc6d4 28\uc77c 1. \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d (OOP)\ub780? \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d(Object-Oriented Programming, OOP)\uc740 \ud504\ub85c\uadf8\ub7a8\uc744 \uac1d\uccb4\ub97c \uc911\uc2ec\uc73c\ub85c \uad6c\uc131\ud558\ub294 \ud504\ub85c\uadf8\ub798\ubc0d \ud328\ub7ec\ub2e4\uc784\uc785\ub2c8\ub2e4. \uac1d\uccb4\ub294 \ub370\uc774\ud130\uc640 \uc774 \ub370\uc774\ud130\ub97c \ub2e4\ub8e8\ub294 \ud568\uc218\ub97c \ucea1\uc290\ud654\ud558\uc5ec \uc18c\ud504\ud2b8\uc6e8\uc5b4\uc758 \ubcf5\uc7a1\uc131\uc744 \uc904\uc774\uace0 \ucf54\ub4dc\uc758 \uc7ac\uc0ac\uc6a9\uc131\uc744 \ub192\uc774\ub294 \ub370 \uae30\uc5ec\ud569\ub2c8\ub2e4. OOP\uc758\u6838\u5fc3 \uac1c\ub150\uc740 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4: \ucea1\uc290\ud654(Encapsulation): \ub370\uc774\ud130\uc640 \uba54\uc11c\ub4dc\ub97c \ud558\ub098\uc758 \ub2e8\uc704\ub85c \ubb36\uc5b4 \uc678\ubd80\ub85c\ubd80\ud130 \ubcf4\ud638\ud569\ub2c8\ub2e4. \uc774\ub97c \ud1b5\ud574 \uac1d\uccb4\uc758\u2026","rel":"","context":"&quot;\ud50c\ub7ec\ud130 \uac15\uc88c&quot;\uc5d0\uc11c","block_context":{"text":"\ud50c\ub7ec\ud130 \uac15\uc88c","link":"https:\/\/atmokpo.com\/w\/category\/%ed%94%8c%eb%9f%ac%ed%84%b0-%ea%b0%95%ec%a2%8c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":43487,"url":"https:\/\/atmokpo.com\/w\/43487\/","url_meta":{"origin":43485,"position":1},"title":"[Dart \uc5b8\uc5b4\uac15\uc88c]  010. \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d (OOP) \uc18c\uac1c, \ucd94\uc0c1 \ud074\ub798\uc2a4\uc640 \uc778\ud130\ud398\uc774\uc2a4","author":"root","date":"2024\ub144 11\uc6d4 28\uc77c","format":false,"excerpt":"\ud504\ub85c\uadf8\ub7a8\uc744 \uad6c\uc870\uc801\uc774\uace0 \ud6a8\uc728\uc801\uc73c\ub85c \uc791\uc131\ud558\ub294 \ub370 \uc911\uc694\ud55c \uac1c\ub150 \uc911 \ud558\ub098\ub294 \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d(Object-Oriented Programming, OOP)\uc785\ub2c8\ub2e4. Dart \uc5b8\uc5b4\ub294 \uc774\ub7ec\ud55c OOP \uac1c\ub150\uc744 \ubc14\ud0d5\uc73c\ub85c \uc124\uacc4\ub41c \uc5b8\uc5b4\ub85c, \ucf54\ub4dc\ub97c \uc7ac\uc0ac\uc6a9\ud558\uace0 \uc720\uc9c0\ubcf4\uc218\ud558\uae30 \uc27d\uac8c \ub9cc\ub4e4\uc5b4 \uc90d\ub2c8\ub2e4. OOP\uc758 \uc911\uc694\ud55c \uad6c\uc131 \uc694\uc18c\uc778 \ucd94\uc0c1 \ud074\ub798\uc2a4\uc640 \uc778\ud130\ud398\uc774\uc2a4\ub97c \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d(OOP) \uac1c\ub150 \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d\uc740 \ud504\ub85c\uadf8\ub7a8\uc744 '\uac1d\uccb4'\ub77c\ub294 \ub3c5\ub9bd\uc801\uc778 \ub2e8\uc704\ub85c \uad6c\uc131\ud558\uc5ec \ubb38\uc81c\ub97c \ud574\uacb0\ud558\ub294 \ubc29\uc2dd\uc785\ub2c8\ub2e4. \uac1d\uccb4\ub294\u2026","rel":"","context":"&quot;\ud50c\ub7ec\ud130 \uac15\uc88c&quot;\uc5d0\uc11c","block_context":{"text":"\ud50c\ub7ec\ud130 \uac15\uc88c","link":"https:\/\/atmokpo.com\/w\/category\/%ed%94%8c%eb%9f%ac%ed%84%b0-%ea%b0%95%ec%a2%8c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":30545,"url":"https:\/\/atmokpo.com\/w\/30545\/","url_meta":{"origin":43485,"position":2},"title":"\ucf54\ud2c0\ub9b0 \uc548\ub4dc\ub85c\uc774\ub4dc \uc571\uac1c\ubc1c \uac15\uc88c, \ud2c0\ub9b0 \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d","author":"root","date":"2024\ub144 10\uc6d4 28\uc77c","format":false,"excerpt":"\ucd5c\uadfc \ubaa8\ubc14\uc77c \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc774 \ud65c\uc131\ud654\ub418\uace0, \uadf8 \uc911\uc5d0\uc11c\ub3c4 \uc548\ub4dc\ub85c\uc774\ub4dc \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc774 \uc8fc\ubaa9\ubc1b\uace0 \uc788\uc2b5\ub2c8\ub2e4. \ucf54\ud2c0\ub9b0(Kotlin)\uc740 \uad6c\uae00\uc774 \uacf5\uc2dd\uc801\uc73c\ub85c \uc9c0\uc6d0\ud558\ub294 \uc548\ub4dc\ub85c\uc774\ub4dc \uc571 \uac1c\ubc1c \uc5b8\uc5b4\ub85c, \uac04\uacb0\ud558\uace0 \uc548\uc804\ud55c \ubb38\ubc95\uc73c\ub85c \ub9ce\uc740 \uac1c\ubc1c\uc790\ub4e4\uc5d0\uac8c \uc0ac\ub791\ubc1b\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d(OOP)\uc758 \uae30\ubcf8 \uac1c\ub150\uc744 \uc54c\uc544\ubcf4\uace0, \uc774\ub97c \ucf54\ud2c0\ub9b0\uc744 \ud65c\uc6a9\ud55c \uc548\ub4dc\ub85c\uc774\ub4dc \uc571 \uac1c\ubc1c\uc5d0 \uc5b4\ub5bb\uac8c \uc801\uc6a9\ud560 \uc218 \uc788\ub294\uc9c0 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. \ud2b9\ud788 '\ud2c0\ub9b0 \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d'\uc774\ub77c\ub294 \uc8fc\uc81c\ub97c\u2026","rel":"","context":"&quot;\ucf54\ud2c0\ub9b0 \uc548\ub4dc\ub85c\uc774\ub4dc\uc571 \uac1c\ubc1c&quot;\uc5d0\uc11c","block_context":{"text":"\ucf54\ud2c0\ub9b0 \uc548\ub4dc\ub85c\uc774\ub4dc\uc571 \uac1c\ubc1c","link":"https:\/\/atmokpo.com\/w\/category\/%ec%bd%94%ed%8b%80%eb%a6%b0-%ec%95%88%eb%93%9c%eb%a1%9c%ec%9d%b4%eb%93%9c%ec%95%b1-%ea%b0%9c%eb%b0%9c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":25676,"url":"https:\/\/atmokpo.com\/w\/25676\/","url_meta":{"origin":43485,"position":3},"title":"\ud50c\ub7ec\ud130 \uac15\uc88c: 9.1 \uc0c1\uc18d\uc774\ub780?","author":"root","date":"2024\ub144 10\uc6d4 26\uc77c","format":false,"excerpt":"\ud504\ub85c\uadf8\ub798\ubc0d\uc758 \ud575\uc2ec \uac1c\ub150 \uc911 \ud558\ub098\uc778 \uc0c1\uc18d\uc740 \uac1d\uccb4 \uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \uac00\uc7a5 \uc911\uc694\ud55c \ud2b9\uc9d5 \uc911 \ud558\ub098\ub85c, \ud50c\ub7ec\ud130\uc5d0\uc11c\ub3c4 \uac1d\uccb4 \uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \uc6d0\uce59\uc744 \ub530\ub974\uace0 \uc788\uc2b5\ub2c8\ub2e4. \ubcf8 \uac15\uc88c\uc5d0\uc11c\ub294 \ud50c\ub7ec\ud130\uc5d0\uc11c\uc758 \uc0c1\uc18d \uac1c\ub150, \uc0ac\uc6a9 \ubc29\ubc95, \uadf8\ub9ac\uace0 \uc2e4\uc804 \uc608\uc81c\ub97c \ud1b5\ud574 \uc0c1\uc18d\uc744 \uae4a\uc774 \uc774\ud574\ud560 \uc218 \uc788\ub3c4\ub85d \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. \uc0c1\uc18d\uc758 \uc815\uc758 \uc0c1\uc18d(Inheritance)\uc740 \uae30\uc874 \ud074\ub798\uc2a4(\ubd80\ubaa8 \ud074\ub798\uc2a4 \ub610\ub294 \uc288\ud37c \ud074\ub798\uc2a4)\uc758 \uc18d\uc131\uacfc \uba54\uc11c\ub4dc\ub97c\u2026","rel":"","context":"&quot;\ud50c\ub7ec\ud130 \uac15\uc88c&quot;\uc5d0\uc11c","block_context":{"text":"\ud50c\ub7ec\ud130 \uac15\uc88c","link":"https:\/\/atmokpo.com\/w\/category\/%ed%94%8c%eb%9f%ac%ed%84%b0-%ea%b0%95%ec%a2%8c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":42688,"url":"https:\/\/atmokpo.com\/w\/42688\/","url_meta":{"origin":43485,"position":4},"title":"[\uac1d\uccb4\uc9c0\ud5a5] 10.Reflection\uacfc \uace0\uae09 \uba54\ud0c0\ud504\ub85c\uadf8\ub798\ubc0d, \uc758\uc874\uc131 \uc8fc\uc785\uc5d0\uc11c Reflection \uc0ac\uc6a9 \uc0ac\ub840","author":"root","date":"2024\ub144 11\uc6d4 13\uc77c","format":false,"excerpt":"\uae00\uc4f4\uc774: \uc870\uad11\ud615 \ub0a0\uc9dc: 2024\ub144 11\uc6d4 26\uc77c 1. \uc11c\ub860 \ud604\ub300 \uc18c\ud504\ud2b8\uc6e8\uc5b4 \uac1c\ubc1c\uc5d0\uc11c \uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d(OOP)\uacfc \uba54\ud0c0\ud504\ub85c\uadf8\ub798\ubc0d\uc740 \ud544\uc218\uc801\uc778 \uac1c\ub150\uc73c\ub85c \uc790\ub9ac \uc7a1\uace0 \uc788\uc2b5\ub2c8\ub2e4. C#\uc740 \uc774\ub7ec\ud55c \uac1c\ub150\uc744 \uc9c0\uc6d0\ud558\ub294 \uc5ec\ub7ec \uac15\ub825\ud55c \uae30\ub2a5\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. \ud2b9\ud788, Reflection\uc740 \ud074\ub798\uc2a4, \uba54\uc11c\ub4dc, \uc18d\uc131 \ub4f1\uc758 \uba54\ud0c0\ub370\uc774\ud130\ub97c \ub7f0\ud0c0\uc784\uc5d0 \ub3d9\uc801\uc73c\ub85c \ud655\uc778\ud558\uace0 \uc870\uc791\ud560 \uc218 \uc788\ub294 \uae30\ub2a5\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. \ubcf8 \uae00\uc5d0\uc11c\ub294 Reflection\uacfc \uace0\uae09 \uba54\ud0c0\ud504\ub85c\uadf8\ub798\ubc0d\uc5d0 \ub300\ud574 \uc0b4\ud3b4\ubcf4\uace0, \uc758\uc874\uc131\u2026","rel":"","context":"&quot;csharp&quot;\uc5d0\uc11c","block_context":{"text":"csharp","link":"https:\/\/atmokpo.com\/w\/category\/csharp\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":43477,"url":"https:\/\/atmokpo.com\/w\/43477\/","url_meta":{"origin":43485,"position":5},"title":"[Dart \uc5b8\uc5b4\uac15\uc88c]  005. \uae30\ubcf8 \ubb38\ubc95 \ubc30\uc6b0\uae30, \ubcc0\uc218 \ubc0f \ub370\uc774\ud130 \ud0c0\uc785","author":"root","date":"2024\ub144 11\uc6d4 28\uc77c","format":false,"excerpt":"1. Dart \uc5b8\uc5b4 \uc18c\uac1c Dart\ub294 Google\uc5d0\uc11c \uac1c\ubc1c\ud55c \ud604\ub300\uc801\uc778 \ud504\ub85c\uadf8\ub798\ubc0d \uc5b8\uc5b4\ub85c, \uc8fc\ub85c \ubaa8\ubc14\uc77c \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \ubc0f \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc5d0 \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \ud2b9\ud788 Flutter \ud504\ub808\uc784\uc6cc\ud06c\uc640 \ud568\uaed8 \uc0ac\uc6a9\ub418\uc5b4 \ud06c\ub85c\uc2a4 \ud50c\ub7ab\ud3fc \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc758 \uc778\uae30 \uc5b8\uc5b4\ub85c \uc790\ub9ac \uc7a1\uace0 \uc788\uc2b5\ub2c8\ub2e4. Dart\uc758 \ubb38\ubc95\uc740 Java\uc640 C#\uc5d0\uc11c \uc601\ud5a5\uc744 \ubc1b\uc558\uc73c\uba70, \uc774\ub97c \ud1b5\ud574 \uac1c\ubc1c\uc790\ub4e4\uc774 \uc27d\uac8c \uc811\uadfc\ud560 \uc218 \uc788\ub294 \uce5c\uc219\ud55c \uc5b8\uc5b4\uc785\ub2c8\ub2e4. Dart\ub294 \uac1d\uccb4 \uc9c0\ud5a5\u2026","rel":"","context":"&quot;\ud50c\ub7ec\ud130 \uac15\uc88c&quot;\uc5d0\uc11c","block_context":{"text":"\ud50c\ub7ec\ud130 \uac15\uc88c","link":"https:\/\/atmokpo.com\/w\/category\/%ed%94%8c%eb%9f%ac%ed%84%b0-%ea%b0%95%ec%a2%8c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/43485","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=43485"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/43485\/revisions"}],"predecessor-version":[{"id":43486,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/43485\/revisions\/43486"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=43485"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=43485"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=43485"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}