{"id":42730,"date":"2024-11-13T20:48:10","date_gmt":"2024-11-13T20:48:10","guid":{"rendered":"https:\/\/atmokpo.com\/w\/?p=42730"},"modified":"2024-11-26T06:34:38","modified_gmt":"2024-11-26T06:34:38","slug":"1-%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%ec%9d%98-%ed%95%b5%ec%8b%ac-%ec%9b%90%ec%b9%99-%ec%ba%a1%ec%8a%90%ed%99%94-%ec%83%81%ec%86%8d-%eb%8b%a4%ed%98%95","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/42730\/","title":{"rendered":"[\uac1d\uccb4\uc9c0\ud5a5] 1.\uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \ud575\uc2ec \uc6d0\uce59, \ucea1\uc290\ud654, \uc0c1\uc18d, \ub2e4\ud615\uc131, \ucd94\uc0c1\ud654 \uc6d0\uce59"},"content":{"rendered":"<p><body><\/p>\n<article>\n<header>\n<p>\uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d(OOP)\uc740 \uc18c\ud504\ud2b8\uc6e8\uc5b4 \uac1c\ubc1c\uc5d0\uc11c \ub110\ub9ac \uc0ac\uc6a9\ub418\ub294 \ud328\ub7ec\ub2e4\uc784\uc73c\ub85c, \ucf54\ub4dc\uc758 \uc7ac\uc0ac\uc6a9\uc131\uacfc \uc720\uc9c0\ubcf4\uc218\uc131\uc744 \ub192\uc774\ub294 \ub370 \uc911\uc810\uc744 \ub461\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 OOP\uc758 \ub124 \uac00\uc9c0 \ud575\uc2ec \uc6d0\uce59\uc778 \ucea1\uc290\ud654, \uc0c1\uc18d, \ub2e4\ud615\uc131, \ucd94\uc0c1\ud654\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n<\/header>\n<section>\n<h2>1. \ucea1\uc290\ud654 (Encapsulation)<\/h2>\n<p>\ucea1\uc290\ud654\ub294 \uac1d\uccb4\uc758 \uc0c1\ud0dc(\uc18d\uc131)\ub97c \uc678\ubd80\uc5d0\uc11c \uc9c1\uc811 \uc811\uadfc\ud558\uc9c0 \ubabb\ud558\ub3c4\ub85d \uac10\ucd94\uace0, \ub300\uc2e0 \uacf5\uac1c\ub41c \uba54\uc11c\ub4dc\ub97c \ud1b5\ud574 \uc0c1\ud0dc\ub97c \ubcc0\uacbd\ud558\uac70\ub098 \uc811\uadfc\ud558\ub3c4\ub85d \ud558\ub294 \uc6d0\uce59\uc785\ub2c8\ub2e4. \uc774\ub85c \uc778\ud574 \ub0b4\ubd80 \uad6c\ud604\uc744 \ubcc0\uacbd\ud558\ub354\ub77c\ub3c4 \uc678\ubd80\uc5d0 \ubbf8\uce58\ub294 \uc601\ud5a5\uc744 \uc904\uc77c \uc218 \uc788\uc73c\uba70, \uac1d\uccb4\uc758 \uc77c\uad00\uc131\uc744 \uc720\uc9c0\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<pre><code class=\"language-csharp\">\npublic class BankAccount\n{\n    private decimal balance;\n\n    public void Deposit(decimal amount)\n    {\n        if (amount &gt; 0)\n        {\n            balance += amount;\n        }\n    }\n\n    public decimal GetBalance()\n    {\n        return balance;\n    }\n}\n<\/code><\/pre>\n<p>\uc704 \uc608\uc81c\uc5d0\uc11c <code>balance<\/code> \ud544\ub4dc\ub294 <code>private<\/code>\uc73c\ub85c \uc815\uc758\ub418\uc5b4 \uc678\ubd80\uc5d0\uc11c \uc9c1\uc811 \uc811\uadfc\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \ub300\uc2e0 <code>Deposit<\/code>\uacfc <code>GetBalance<\/code> \uba54\uc11c\ub4dc\ub97c \ud1b5\ud574 \uc548\uc804\ud558\uac8c \uc811\uadfc\ud558\uace0 \uc218\uc815\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<\/section>\n<section>\n<h2>2. \uc0c1\uc18d (Inheritance)<\/h2>\n<p>\uc0c1\uc18d\uc740 \ud55c \ud074\ub798\uc2a4\uac00 \ub2e4\ub978 \ud074\ub798\uc2a4\uc758 \uc18d\uc131\uacfc \uba54\uc11c\ub4dc\ub97c \ubb3c\ub824\ubc1b\uc744 \uc218 \uc788\ub294 \uae30\ub2a5\uc785\ub2c8\ub2e4. \uc774\ub97c \ud1b5\ud574 \ucf54\ub4dc\uc758 \uc911\ubcf5\uc744 \uc904\uc774\uace0, \uacc4\uce35\uc801\uc778 \uad00\uacc4\ub97c \ud45c\ud604\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc790\uc2dd \ud074\ub798\uc2a4\ub294 \ubd80\ubaa8 \ud074\ub798\uc2a4\uc758 \ubaa8\ub4e0 \uae30\ub2a5\uc744 \uc0c1\uc18d\ubc1b\uace0, \ud544\uc694\uc5d0 \ub530\ub77c \uc774\ub97c \uc624\ubc84\ub77c\uc774\ub4dc(\uc7ac\uc815\uc758)\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<pre><code class=\"language-csharp\">\npublic class Animal\n{\n    public void Eat()\n    {\n        Console.WriteLine(\"Animal is eating\");\n    }\n}\n\npublic class Dog : Animal\n{\n    public void Bark()\n    {\n        Console.WriteLine(\"Dog is barking\");\n    }\n}\n<\/code><\/pre>\n<p>\uc774 \uc608\uc81c\uc5d0\uc11c <code>Dog<\/code> \ud074\ub798\uc2a4\ub294 <code>Animal<\/code> \ud074\ub798\uc2a4\ub97c \uc0c1\uc18d\ubc1b\uc544 <code>Eat<\/code> \uba54\uc11c\ub4dc\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ucd94\uac00\ub85c <code>Bark<\/code> \uba54\uc11c\ub4dc\ub97c \uc815\uc758\ud558\uc5ec \uac1c\uc758 \uace0\uc720\ud55c \ud589\ub3d9\uc744 \uad6c\ud604\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<\/section>\n<section>\n<h2>3. \ub2e4\ud615\uc131 (Polymorphism)<\/h2>\n<p>\ub2e4\ud615\uc131\uc740 \ud558\ub098\uc758 \uba54\uc11c\ub4dc\ub098 \uc18d\uc131\uc774 \uc5ec\ub7ec \ud615\ud0dc\ub97c \uac00\uc9c8 \uc218 \uc788\ub294 \ub2a5\ub825\uc744 \uc758\ubbf8\ud569\ub2c8\ub2e4. OOP\uc5d0\uc11c\ub294 \uc8fc\ub85c \uba54\uc11c\ub4dc \uc624\ubc84\ub77c\uc774\ub529\uacfc \uba54\uc11c\ub4dc \uc624\ubc84\ub85c\ub529\uc744 \ud1b5\ud574 \ub2e4\ud615\uc131\uc744 \uad6c\ud604\ud569\ub2c8\ub2e4. \ub2e4\ud615\uc131\uc744 \ud1b5\ud574 \ucf54\ub4dc\ub294 \ub354 \uc720\uc5f0\ud574\uc9c0\uace0, \ub2e4\uc591\ud55c \uac1d\uccb4\ub97c \ub3d9\uc77c\ud55c \uc778\ud130\ud398\uc774\uc2a4\ub85c \ub2e4\ub8f0 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<pre><code class=\"language-csharp\">\npublic class Shape\n{\n    public virtual void Draw()\n    {\n        Console.WriteLine(\"Drawing a shape\");\n    }\n}\n\npublic class Circle : Shape\n{\n    public override void Draw()\n    {\n        Console.WriteLine(\"Drawing a circle\");\n    }\n}\n\npublic class Square : Shape\n{\n    public override void Draw()\n    {\n        Console.WriteLine(\"Drawing a square\");\n    }\n}\n<\/code><\/pre>\n<p>\uc704\uc758 \uc608\uc81c\uc5d0\uc11c <code>Shape<\/code> \ud074\ub798\uc2a4\ub294 \uae30\ubcf8\uc801\uc778 <code>Draw<\/code> \uba54\uc11c\ub4dc\ub97c \uc815\uc758\ud558\uace0, <code>Circle<\/code>\uacfc <code>Square<\/code> \ud074\ub798\uc2a4\ub294 \uc774\ub97c \uc624\ubc84\ub77c\uc774\ub4dc\ud558\uc5ec \uc11c\ub85c \ub2e4\ub978 \uad6c\ud604\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. \ub2e4\uc74c\ucc98\ub7fc \ub2e4\ud615\uc131\uc744 \ud65c\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4:<\/p>\n<pre><code class=\"language-csharp\">\npublic void DrawShape(Shape shape)\n{\n    shape.Draw();\n}\n\n\/\/ \uc0ac\uc6a9 \uc608\nDrawShape(new Circle());\nDrawShape(new Square());\n<\/code><\/pre>\n<\/section>\n<section>\n<h2>4. \ucd94\uc0c1\ud654 (Abstraction)<\/h2>\n<p>\ucd94\uc0c1\ud654\ub294 \ubcf5\uc7a1\ud55c \uc2dc\uc2a4\ud15c\uc5d0\uc11c \uc911\uc694\ud558\uc9c0 \uc54a\uac70\ub098 \ubd88\ud544\uc694\ud55c \uc138\ubd80 \uc0ac\ud56d\uc744 \uc228\uae30\uace0, \uc624\ud788\ub824 \uc911\uc694\ud55c \uac1c\ub150\uc774\ub098 \uae30\ub2a5\uc5d0 \ucd08\uc810\uc744 \ub9de\ucd94\ub294 \uacfc\uc815\uc785\ub2c8\ub2e4. OOP\uc5d0\uc11c\ub294 \ucd94\uc0c1 \ud074\ub798\uc2a4\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc77c\ubd80 \uba54\uc11c\ub4dc\ub294 \uc790\uc2dd \ud074\ub798\uc2a4\uc5d0\uc11c \uad6c\ud604\ud558\ub3c4\ub85d \uac15\uc81c\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<pre><code class=\"language-csharp\">\npublic abstract class Vehicle\n{\n    public abstract void Drive();\n}\n\npublic class Car : Vehicle\n{\n    public override void Drive()\n    {\n        Console.WriteLine(\"Driving a car\");\n    }\n}\n<\/code><\/pre>\n<p>\uc704\uc758 \uc608\uc81c\uc5d0\uc11c <code>Vehicle<\/code> \ud074\ub798\uc2a4\ub294 \ucd94\uc0c1 \ud074\ub798\uc2a4\ub85c, <code>Drive<\/code> \uba54\uc11c\ub4dc\ub294 \uad6c\ud604\ub418\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4. <code>Car<\/code> \ud074\ub798\uc2a4\uac00 \uc774\ub97c \uad6c\ud604\ud558\uc5ec \uad6c\uccb4\uc801\uc778 \ud589\ub3d9\uc744 \uc815\uc758\ud569\ub2c8\ub2e4.<\/p>\n<\/section>\n<footer>\n<h2>\uacb0\ub860<\/h2>\n<p>\uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \ub124 \uac00\uc9c0 \ud575\uc2ec \uc6d0\uce59\uc778 \ucea1\uc290\ud654, \uc0c1\uc18d, \ub2e4\ud615\uc131, \ucd94\uc0c1\ud654\ub294 \ubaa8\ub4e0 \ud504\ub85c\uadf8\ub798\ubc0d \uc5b8\uc5b4\uc5d0\uc11c \ub9e4\uc6b0 \uc911\uc694\ud55c \uac1c\ub150\uc785\ub2c8\ub2e4. C#\uacfc \uac19\uc740 \uc5b8\uc5b4\uc5d0\uc11c\ub294 \uc774\ub7ec\ud55c \uc6d0\uce59\uc744 \ud6a8\uacfc\uc801\uc73c\ub85c \ud65c\uc6a9\ud558\uc5ec \uacac\uace0\ud558\uace0 \uc720\uc5f0\ud55c \uc18c\ud504\ud2b8\uc6e8\uc5b4\ub97c \uc124\uacc4\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uac01\uac01\uc758 \uc6d0\uce59\uc744 \uc798 \uc774\ud574\ud558\uace0 \ud65c\uc6a9\ud558\uba74 \ud504\ub85c\uadf8\ub7a8\uc758 \uad6c\uc870\uac00 \uac1c\uc120\ub418\uace0, \ucf54\ub4dc\uc758 \uc7ac\uc0ac\uc6a9\uc131\uacfc \uc720\uc9c0\ubcf4\uc218\uc131\uc774 \ud5a5\uc0c1\ub420 \uac83\uc785\ub2c8\ub2e4.<\/p>\n<\/footer>\n<\/article>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d(OOP)\uc740 \uc18c\ud504\ud2b8\uc6e8\uc5b4 \uac1c\ubc1c\uc5d0\uc11c \ub110\ub9ac \uc0ac\uc6a9\ub418\ub294 \ud328\ub7ec\ub2e4\uc784\uc73c\ub85c, \ucf54\ub4dc\uc758 \uc7ac\uc0ac\uc6a9\uc131\uacfc \uc720\uc9c0\ubcf4\uc218\uc131\uc744 \ub192\uc774\ub294 \ub370 \uc911\uc810\uc744 \ub461\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 OOP\uc758 \ub124 \uac00\uc9c0 \ud575\uc2ec \uc6d0\uce59\uc778 \ucea1\uc290\ud654, \uc0c1\uc18d, \ub2e4\ud615\uc131, \ucd94\uc0c1\ud654\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. \ucea1\uc290\ud654 (Encapsulation) \ucea1\uc290\ud654\ub294 \uac1d\uccb4\uc758 \uc0c1\ud0dc(\uc18d\uc131)\ub97c \uc678\ubd80\uc5d0\uc11c \uc9c1\uc811 \uc811\uadfc\ud558\uc9c0 \ubabb\ud558\ub3c4\ub85d \uac10\ucd94\uace0, \ub300\uc2e0 \uacf5\uac1c\ub41c \uba54\uc11c\ub4dc\ub97c \ud1b5\ud574 \uc0c1\ud0dc\ub97c \ubcc0\uacbd\ud558\uac70\ub098 \uc811\uadfc\ud558\ub3c4\ub85d \ud558\ub294 \uc6d0\uce59\uc785\ub2c8\ub2e4. \uc774\ub85c \uc778\ud574 \ub0b4\ubd80 \uad6c\ud604\uc744 \ubcc0\uacbd\ud558\ub354\ub77c\ub3c4 \uc678\ubd80\uc5d0 \ubbf8\uce58\ub294 &hellip; <a href=\"https:\/\/atmokpo.com\/w\/42730\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;[\uac1d\uccb4\uc9c0\ud5a5] 1.\uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \ud575\uc2ec \uc6d0\uce59, \ucea1\uc290\ud654, \uc0c1\uc18d, \ub2e4\ud615\uc131, \ucd94\uc0c1\ud654 \uc6d0\uce59&#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":[241],"tags":[],"class_list":["post-42730","post","type-post","status-publish","format-standard","hentry","category-csharp"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[\uac1d\uccb4\uc9c0\ud5a5] 1.\uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \ud575\uc2ec \uc6d0\uce59, \ucea1\uc290\ud654, \uc0c1\uc18d, \ub2e4\ud615\uc131, \ucd94\uc0c1\ud654 \uc6d0\uce59 - \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\/42730\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[\uac1d\uccb4\uc9c0\ud5a5] 1.\uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \ud575\uc2ec \uc6d0\uce59, \ucea1\uc290\ud654, \uc0c1\uc18d, \ub2e4\ud615\uc131, \ucd94\uc0c1\ud654 \uc6d0\uce59 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"\uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d(OOP)\uc740 \uc18c\ud504\ud2b8\uc6e8\uc5b4 \uac1c\ubc1c\uc5d0\uc11c \ub110\ub9ac \uc0ac\uc6a9\ub418\ub294 \ud328\ub7ec\ub2e4\uc784\uc73c\ub85c, \ucf54\ub4dc\uc758 \uc7ac\uc0ac\uc6a9\uc131\uacfc \uc720\uc9c0\ubcf4\uc218\uc131\uc744 \ub192\uc774\ub294 \ub370 \uc911\uc810\uc744 \ub461\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 OOP\uc758 \ub124 \uac00\uc9c0 \ud575\uc2ec \uc6d0\uce59\uc778 \ucea1\uc290\ud654, \uc0c1\uc18d, \ub2e4\ud615\uc131, \ucd94\uc0c1\ud654\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. \ucea1\uc290\ud654 (Encapsulation) \ucea1\uc290\ud654\ub294 \uac1d\uccb4\uc758 \uc0c1\ud0dc(\uc18d\uc131)\ub97c \uc678\ubd80\uc5d0\uc11c \uc9c1\uc811 \uc811\uadfc\ud558\uc9c0 \ubabb\ud558\ub3c4\ub85d \uac10\ucd94\uace0, \ub300\uc2e0 \uacf5\uac1c\ub41c \uba54\uc11c\ub4dc\ub97c \ud1b5\ud574 \uc0c1\ud0dc\ub97c \ubcc0\uacbd\ud558\uac70\ub098 \uc811\uadfc\ud558\ub3c4\ub85d \ud558\ub294 \uc6d0\uce59\uc785\ub2c8\ub2e4. \uc774\ub85c \uc778\ud574 \ub0b4\ubd80 \uad6c\ud604\uc744 \ubcc0\uacbd\ud558\ub354\ub77c\ub3c4 \uc678\ubd80\uc5d0 \ubbf8\uce58\ub294 &hellip; \ub354 \ubcf4\uae30 &quot;[\uac1d\uccb4\uc9c0\ud5a5] 1.\uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \ud575\uc2ec \uc6d0\uce59, \ucea1\uc290\ud654, \uc0c1\uc18d, \ub2e4\ud615\uc131, \ucd94\uc0c1\ud654 \uc6d0\uce59&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/42730\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-13T20:48:10+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T06:34:38+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\/42730\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/42730\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"[\uac1d\uccb4\uc9c0\ud5a5] 1.\uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \ud575\uc2ec \uc6d0\uce59, \ucea1\uc290\ud654, \uc0c1\uc18d, \ub2e4\ud615\uc131, \ucd94\uc0c1\ud654 \uc6d0\uce59\",\"datePublished\":\"2024-11-13T20:48:10+00:00\",\"dateModified\":\"2024-11-26T06:34:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/42730\/\"},\"wordCount\":9,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"csharp\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/42730\/\",\"url\":\"https:\/\/atmokpo.com\/w\/42730\/\",\"name\":\"[\uac1d\uccb4\uc9c0\ud5a5] 1.\uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \ud575\uc2ec \uc6d0\uce59, \ucea1\uc290\ud654, \uc0c1\uc18d, \ub2e4\ud615\uc131, \ucd94\uc0c1\ud654 \uc6d0\uce59 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-13T20:48:10+00:00\",\"dateModified\":\"2024-11-26T06:34:38+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/42730\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/42730\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/42730\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[\uac1d\uccb4\uc9c0\ud5a5] 1.\uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \ud575\uc2ec \uc6d0\uce59, \ucea1\uc290\ud654, \uc0c1\uc18d, \ub2e4\ud615\uc131, \ucd94\uc0c1\ud654 \uc6d0\uce59\"}]},{\"@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":"[\uac1d\uccb4\uc9c0\ud5a5] 1.\uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \ud575\uc2ec \uc6d0\uce59, \ucea1\uc290\ud654, \uc0c1\uc18d, \ub2e4\ud615\uc131, \ucd94\uc0c1\ud654 \uc6d0\uce59 - \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\/42730\/","og_locale":"ko_KR","og_type":"article","og_title":"[\uac1d\uccb4\uc9c0\ud5a5] 1.\uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \ud575\uc2ec \uc6d0\uce59, \ucea1\uc290\ud654, \uc0c1\uc18d, \ub2e4\ud615\uc131, \ucd94\uc0c1\ud654 \uc6d0\uce59 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"\uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d(OOP)\uc740 \uc18c\ud504\ud2b8\uc6e8\uc5b4 \uac1c\ubc1c\uc5d0\uc11c \ub110\ub9ac \uc0ac\uc6a9\ub418\ub294 \ud328\ub7ec\ub2e4\uc784\uc73c\ub85c, \ucf54\ub4dc\uc758 \uc7ac\uc0ac\uc6a9\uc131\uacfc \uc720\uc9c0\ubcf4\uc218\uc131\uc744 \ub192\uc774\ub294 \ub370 \uc911\uc810\uc744 \ub461\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 OOP\uc758 \ub124 \uac00\uc9c0 \ud575\uc2ec \uc6d0\uce59\uc778 \ucea1\uc290\ud654, \uc0c1\uc18d, \ub2e4\ud615\uc131, \ucd94\uc0c1\ud654\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. \ucea1\uc290\ud654 (Encapsulation) \ucea1\uc290\ud654\ub294 \uac1d\uccb4\uc758 \uc0c1\ud0dc(\uc18d\uc131)\ub97c \uc678\ubd80\uc5d0\uc11c \uc9c1\uc811 \uc811\uadfc\ud558\uc9c0 \ubabb\ud558\ub3c4\ub85d \uac10\ucd94\uace0, \ub300\uc2e0 \uacf5\uac1c\ub41c \uba54\uc11c\ub4dc\ub97c \ud1b5\ud574 \uc0c1\ud0dc\ub97c \ubcc0\uacbd\ud558\uac70\ub098 \uc811\uadfc\ud558\ub3c4\ub85d \ud558\ub294 \uc6d0\uce59\uc785\ub2c8\ub2e4. \uc774\ub85c \uc778\ud574 \ub0b4\ubd80 \uad6c\ud604\uc744 \ubcc0\uacbd\ud558\ub354\ub77c\ub3c4 \uc678\ubd80\uc5d0 \ubbf8\uce58\ub294 &hellip; \ub354 \ubcf4\uae30 \"[\uac1d\uccb4\uc9c0\ud5a5] 1.\uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \ud575\uc2ec \uc6d0\uce59, \ucea1\uc290\ud654, \uc0c1\uc18d, \ub2e4\ud615\uc131, \ucd94\uc0c1\ud654 \uc6d0\uce59\"","og_url":"https:\/\/atmokpo.com\/w\/42730\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-13T20:48:10+00:00","article_modified_time":"2024-11-26T06:34:38+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\/42730\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/42730\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"[\uac1d\uccb4\uc9c0\ud5a5] 1.\uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \ud575\uc2ec \uc6d0\uce59, \ucea1\uc290\ud654, \uc0c1\uc18d, \ub2e4\ud615\uc131, \ucd94\uc0c1\ud654 \uc6d0\uce59","datePublished":"2024-11-13T20:48:10+00:00","dateModified":"2024-11-26T06:34:38+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/42730\/"},"wordCount":9,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["csharp"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/42730\/","url":"https:\/\/atmokpo.com\/w\/42730\/","name":"[\uac1d\uccb4\uc9c0\ud5a5] 1.\uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \ud575\uc2ec \uc6d0\uce59, \ucea1\uc290\ud654, \uc0c1\uc18d, \ub2e4\ud615\uc131, \ucd94\uc0c1\ud654 \uc6d0\uce59 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-13T20:48:10+00:00","dateModified":"2024-11-26T06:34:38+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/42730\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/42730\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/42730\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"[\uac1d\uccb4\uc9c0\ud5a5] 1.\uac1d\uccb4\uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \ud575\uc2ec \uc6d0\uce59, \ucea1\uc290\ud654, \uc0c1\uc18d, \ub2e4\ud615\uc131, \ucd94\uc0c1\ud654 \uc6d0\uce59"}]},{"@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":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/42730","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=42730"}],"version-history":[{"count":2,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/42730\/revisions"}],"predecessor-version":[{"id":42751,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/42730\/revisions\/42751"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=42730"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=42730"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=42730"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}