<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Моя крышесносная доска Padlet by </title>
      <link>https://padlet.com/yanaruban0404/6r56a384m4a2lsa</link>
      <description>Сделано беспристрастно</description>
      <language>en-us</language>
      <pubDate>2022-03-25 01:32:46 UTC</pubDate>
      <lastBuildDate>2022-03-25 02:32:17 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>Определение</title>
         <author>yanaruban0404</author>
         <link>https://padlet.com/yanaruban0404/6r56a384m4a2lsa/wish/2112948581</link>
         <description><![CDATA[<div>Инкапсуляция это набор инструментов для управления доступом к данным или методам которые управляют этими данными.<br>Скрытие внутреннего состояния и функций объекта и предоставление доступа только через открытый набор функций</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-25 01:37:47 UTC</pubDate>
         <guid>https://padlet.com/yanaruban0404/6r56a384m4a2lsa/wish/2112948581</guid>
      </item>
      <item>
         <title>спецификаторы: </title>
         <author>yanaruban0404</author>
         <link>https://padlet.com/yanaruban0404/6r56a384m4a2lsa/wish/2112951316</link>
         <description><![CDATA[<ul><li>публичные (public) данные — доступны всем;</li><li>защищенные (protected) — доступны только классу и дочерним классам;</li><li>приватные (private) —доступны только классу которому они принадлежат.</li></ul><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-25 01:39:31 UTC</pubDate>
         <guid>https://padlet.com/yanaruban0404/6r56a384m4a2lsa/wish/2112951316</guid>
      </item>
      <item>
         <title>Пример</title>
         <author>yanaruban0404</author>
         <link>https://padlet.com/yanaruban0404/6r56a384m4a2lsa/wish/2112962857</link>
         <description><![CDATA[<div>#<strong>include</strong> &lt;iostream&gt;<br><strong>using</strong> <strong>namespace</strong> std;<br><br><strong>class</strong> <strong>Contact</strong><br>{<br>&nbsp; &nbsp; <strong>private</strong>:<br>&nbsp; &nbsp; &nbsp; &nbsp; <strong>int</strong> mobile_number;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;// private variable<br>&nbsp; &nbsp; &nbsp; &nbsp; <strong>int</strong> home_number;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;// private variable<br>&nbsp; &nbsp; <strong>public</strong>:<br>&nbsp; &nbsp; &nbsp; &nbsp; Contact()&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // constructor<br>&nbsp; &nbsp; &nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; mobile_number = 12345678;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; home_number = 87654321;<br>&nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; <strong>void</strong> <strong>print_numbers</strong>()<br>&nbsp; &nbsp; &nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; "Mobile number: " &lt;&lt; mobile_number;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; ", home number: " &lt;&lt; home_number &lt;&lt; endl;<br>&nbsp; &nbsp; &nbsp; &nbsp; }<br>};<br><br><strong>int</strong> <strong>main</strong>()<br>{<br>&nbsp; &nbsp; Contact Tony;<br>&nbsp; &nbsp; Tony.print_numbers();<br>&nbsp; &nbsp; // cout &lt;&lt; Tony.mobile_number &lt;&lt; endl;<br>&nbsp; &nbsp; // will cause compile time error<br>&nbsp; &nbsp; <strong>return</strong> 0;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-25 01:46:49 UTC</pubDate>
         <guid>https://padlet.com/yanaruban0404/6r56a384m4a2lsa/wish/2112962857</guid>
      </item>
      <item>
         <title>Определение</title>
         <author>yanaruban0404</author>
         <link>https://padlet.com/yanaruban0404/6r56a384m4a2lsa/wish/2112967980</link>
         <description><![CDATA[<div><strong>Наследование</strong> – это концепция, которая предполагает, что один класс может наследовать функции и данные другого класса. Класс, от которого производится <strong>наследование</strong> называется родительским или базовым классом, класс который наследует – наследником.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-25 01:49:56 UTC</pubDate>
         <guid>https://padlet.com/yanaruban0404/6r56a384m4a2lsa/wish/2112967980</guid>
      </item>
      <item>
         <title>Пример</title>
         <author>yanaruban0404</author>
         <link>https://padlet.com/yanaruban0404/6r56a384m4a2lsa/wish/2112974287</link>
         <description><![CDATA[<div><strong>using</strong> System;<br><strong>namespace</strong> <strong>ConsoleApp1</strong><br>{<br>&nbsp; &nbsp; <strong>public</strong> <strong>class</strong> <strong>Airplane</strong> : <strong>Transport</strong><br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; <strong>public</strong> <strong>double</strong> WingLength { <strong>get</strong>; <strong>set</strong>; }<br>&nbsp; &nbsp; &nbsp; &nbsp; <strong>public</strong> <strong>Airplane</strong>(<strong>int</strong> year, <strong>int</strong> weight, <strong>string</strong> color, <strong>double</strong> wingLength) : <strong>base</strong>(year, weight, color)<br>&nbsp; &nbsp; &nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; WingLength = wingLength;<br>&nbsp; &nbsp; &nbsp; &nbsp; }<br><br>&nbsp; &nbsp; &nbsp; &nbsp; <strong>public</strong> <strong>override</strong> <strong>void</strong> <strong>Info</strong>()<br>&nbsp; &nbsp; &nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.WriteLine("Airplane");<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.WriteLine($"Year: {Year}\n" +<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $"Weight: {Weight}\n" +<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $"Color: {Color}");<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.WriteLine($"WingLength: {WingLength:0.00}\n");<br>&nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-25 01:54:00 UTC</pubDate>
         <guid>https://padlet.com/yanaruban0404/6r56a384m4a2lsa/wish/2112974287</guid>
      </item>
      <item>
         <title>Определение</title>
         <author>yanaruban0404</author>
         <link>https://padlet.com/yanaruban0404/6r56a384m4a2lsa/wish/2112977271</link>
         <description><![CDATA[<div><strong>Полиморфизм</strong> - это принцип объектно-ориентированного программирования после инкапсуляции и наследования. Это свойство, которое позволяет одно и то же имя использовать для решения двух или более схожих, но технически разных задач.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-25 01:56:02 UTC</pubDate>
         <guid>https://padlet.com/yanaruban0404/6r56a384m4a2lsa/wish/2112977271</guid>
      </item>
      <item>
         <title>Целью полиморфизма</title>
         <author>yanaruban0404</author>
         <link>https://padlet.com/yanaruban0404/6r56a384m4a2lsa/wish/2112978241</link>
         <description><![CDATA[<div>применительно к объектно-ориентированному программированию, является использование одного имени для задания общих для класса действий.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-25 01:56:43 UTC</pubDate>
         <guid>https://padlet.com/yanaruban0404/6r56a384m4a2lsa/wish/2112978241</guid>
      </item>
      <item>
         <title>Пример</title>
         <author>yanaruban0404</author>
         <link>https://padlet.com/yanaruban0404/6r56a384m4a2lsa/wish/2112980799</link>
         <description><![CDATA[<pre>class Item
{
    public string name;
    public int price;
    public int lvl;
 
    public Item()
    {
        this.name = "Item";
        this.price = 15;
        this.lvl = 1;
    }
 
    public Item(string name)
    {
        this.name = name;
        this.price = 15;
        this.lvl = 1;
    }
 
    public Item(string name, int price, int lvl)
    {
        this.name = name;
        this.price = price;
        this.lvl = lvl;
    }
}</pre><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-25 01:58:24 UTC</pubDate>
         <guid>https://padlet.com/yanaruban0404/6r56a384m4a2lsa/wish/2112980799</guid>
      </item>
      <item>
         <title></title>
         <author>yanaruban0404</author>
         <link>https://padlet.com/yanaruban0404/6r56a384m4a2lsa/wish/2112996137</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1642089627/8c0d17635010b12c03b9119ba0875efa/image.png" />
         <pubDate>2022-03-25 02:08:30 UTC</pubDate>
         <guid>https://padlet.com/yanaruban0404/6r56a384m4a2lsa/wish/2112996137</guid>
      </item>
      <item>
         <title></title>
         <author>yanaruban0404</author>
         <link>https://padlet.com/yanaruban0404/6r56a384m4a2lsa/wish/2113000683</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1642089627/116f201cff0c8433193fc4abd2473734/image.png" />
         <pubDate>2022-03-25 02:11:43 UTC</pubDate>
         <guid>https://padlet.com/yanaruban0404/6r56a384m4a2lsa/wish/2113000683</guid>
      </item>
      <item>
         <title></title>
         <author>yanaruban0404</author>
         <link>https://padlet.com/yanaruban0404/6r56a384m4a2lsa/wish/2113004623</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1642089627/4865e574b29ac4a6c488537f22f5fd8d/image.png" />
         <pubDate>2022-03-25 02:14:12 UTC</pubDate>
         <guid>https://padlet.com/yanaruban0404/6r56a384m4a2lsa/wish/2113004623</guid>
      </item>
      <item>
         <title></title>
         <author>yanaruban0404</author>
         <link>https://padlet.com/yanaruban0404/6r56a384m4a2lsa/wish/2113019124</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1642089627/e97e8b1f04bd30b56ea16f5af7a89dba/image.png" />
         <pubDate>2022-03-25 02:23:56 UTC</pubDate>
         <guid>https://padlet.com/yanaruban0404/6r56a384m4a2lsa/wish/2113019124</guid>
      </item>
      <item>
         <title></title>
         <author>yanaruban0404</author>
         <link>https://padlet.com/yanaruban0404/6r56a384m4a2lsa/wish/2113028302</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1642089627/23fae77934f1738a1dd5c345c6d03bbf/image.png" />
         <pubDate>2022-03-25 02:29:27 UTC</pubDate>
         <guid>https://padlet.com/yanaruban0404/6r56a384m4a2lsa/wish/2113028302</guid>
      </item>
      <item>
         <title></title>
         <author>yanaruban0404</author>
         <link>https://padlet.com/yanaruban0404/6r56a384m4a2lsa/wish/2113032355</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1642089627/bcf64446e814ca824f34fd70a54b2c30/image.png" />
         <pubDate>2022-03-25 02:32:17 UTC</pubDate>
         <guid>https://padlet.com/yanaruban0404/6r56a384m4a2lsa/wish/2113032355</guid>
      </item>
   </channel>
</rss>
