<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
		xmlns:xhtml="http://www.w3.org/1999/xhtml"
>

<channel>
	<title>Worth Living &#187; クラス</title>
	<atom:link href="https://worthliv.com/category/cpp/cpp-class/feed" rel="self" type="application/rss+xml" />
	<link>https://worthliv.com</link>
	<description>楽しく幸せに人生を送るためにはどうすれば良いのか？人生の要素をお金、仕事、勉強、プライベート、健康、心の6要素に分類して考察しています。プログラミング入門に関する記事も掲載。</description>
	<lastBuildDate>Wed, 09 Mar 2016 04:20:46 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.41</generator>
<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/category/cpp/cpp-class/feed" />
	<item>
		<title>派生クラスのコンストラクタ・デストラクタ</title>
		<link>https://worthliv.com/cpp_post_63.html</link>
		<comments>https://worthliv.com/cpp_post_63.html#comments</comments>
		<pubDate>Tue, 18 Jun 2013 11:49:16 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[クラス]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1406</guid>
		<description><![CDATA[コンストラクタ・デストラクタの呼び出し順 スポンサーリンク 派生クラスのコンストラクタ、デストラクタがどのように呼び出されるか確認します。 #include &#60;iostream&#62; class base { p [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_63.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_63.html" />
	</item>
		<item>
		<title>派生クラスによる関数の隠蔽</title>
		<link>https://worthliv.com/cpp_post_62.html</link>
		<comments>https://worthliv.com/cpp_post_62.html#comments</comments>
		<pubDate>Tue, 18 Jun 2013 10:21:57 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[クラス]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1405</guid>
		<description><![CDATA[派生クラスで隠蔽される関数の例を見てみます。 スポンサーリンク #include &#60;iostream&#62; class parent { public: int calc(int a, int b) { retu [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_62.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_62.html" />
	</item>
		<item>
		<title>仮想クラス</title>
		<link>https://worthliv.com/cpp_post_61.html</link>
		<comments>https://worthliv.com/cpp_post_61.html#comments</comments>
		<pubDate>Tue, 18 Jun 2013 09:49:47 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[クラス]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1404</guid>
		<description><![CDATA[基底クラスparentを継承する派生クラスchild_a, child_bがあり、さらにchild_a, child_b両方を継承するgrandクラスの定義を考えてみます。 スポンサーリンク #include &#60;i [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_61.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_61.html" />
	</item>
		<item>
		<title>抽象クラス</title>
		<link>https://worthliv.com/cpp_post_60.html</link>
		<comments>https://worthliv.com/cpp_post_60.html#comments</comments>
		<pubDate>Tue, 18 Jun 2013 09:21:03 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[クラス]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1403</guid>
		<description><![CDATA[virtualキーワードで仮想関数を宣言し、必ず子クラスでオーバーライドしなければならない指定が可能です。 以下のように書くと、必ず子クラスでのオーバーライドが必須となります。 スポンサーリンク class parent [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_60.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_60.html" />
	</item>
		<item>
		<title>仮想関数・virtualキーワード</title>
		<link>https://worthliv.com/cpp_virtual.html</link>
		<comments>https://worthliv.com/cpp_virtual.html#comments</comments>
		<pubDate>Tue, 18 Jun 2013 08:28:05 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[クラス]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1402</guid>
		<description><![CDATA[virtualキーワードを指定することで、オーバーライドするメンバ関数を区別することができます。 例を見たほうが簡単です。 スポンサーリンク #include &#60;iostream&#62; class parent  [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_virtual.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_virtual.html" />
	</item>
		<item>
		<title>親クラスの引数ありコンストラクタを子クラスから初期化・動的サイズのスタック</title>
		<link>https://worthliv.com/cpp_post_59.html</link>
		<comments>https://worthliv.com/cpp_post_59.html#comments</comments>
		<pubDate>Tue, 18 Jun 2013 07:08:30 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[クラス]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1401</guid>
		<description><![CDATA[スタックを実装したクラスを拡張するで、例に出したstackクラスを固定サイズでなく、サイズを動的に変更できるようにします。 動的にメモリを確保するには、new演算子を用いて、インスタンス生成時に配列のサイズを引数として渡 [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_59.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_59.html" />
	</item>
		<item>
		<title>クラスのアクセス制限キーワード・private, protected, public</title>
		<link>https://worthliv.com/cpp_private_protected_public.html</link>
		<comments>https://worthliv.com/cpp_private_protected_public.html#comments</comments>
		<pubDate>Tue, 18 Jun 2013 06:19:53 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[クラス]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1400</guid>
		<description><![CDATA[前のページで、スタックを実装したクラスを拡張する例を確認しました。 この時、親クラスstackのメンバ変数、メンバ関数には、それぞれprivate, protected, publicという３つのアクセス制限のためのキー [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_private_protected_public.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_private_protected_public.html" />
	</item>
		<item>
		<title>スタックを実装したクラスを拡張する</title>
		<link>https://worthliv.com/cpp_post_58.html</link>
		<comments>https://worthliv.com/cpp_post_58.html#comments</comments>
		<pubDate>Tue, 18 Jun 2013 05:39:54 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[クラス]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1399</guid>
		<description><![CDATA[C++のクラス定義・クラスでのスタック実装で書いた、スタックを扱うクラスを少し改良し、子クラスで機能を拡張させてみます。 継承する子クラスで拡張する機能は、以下の2つの機能を拡張します。 スポンサーリンク １．2つの要素 [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_58.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_58.html" />
	</item>
		<item>
		<title>クラス継承・親クラスと子クラス</title>
		<link>https://worthliv.com/cpp_post_57.html</link>
		<comments>https://worthliv.com/cpp_post_57.html#comments</comments>
		<pubDate>Tue, 18 Jun 2013 04:57:40 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[クラス]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1398</guid>
		<description><![CDATA[クラスを用いたプログラミングには、クラスを継承することで機能を拡張したり、機能を分割できる、というメリットがあります。 親クラスは、継承する元となるクラスで、基底クラス、スーパークラスなどとも言います。 子クラスは、派生 [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_57.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_57.html" />
	</item>
		<item>
		<title>static・静的メンバ関数</title>
		<link>https://worthliv.com/cpp_static_1.html</link>
		<comments>https://worthliv.com/cpp_static_1.html#comments</comments>
		<pubDate>Sun, 09 Jun 2013 07:24:08 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[クラス]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1365</guid>
		<description><![CDATA[static・静的メンバ変数で、メンバ変数をオブジェクトではなく、クラスに属するようにする方法を見ました。 メンバ関数についても、static宣言が可能であり、非静的データを使用しない関数は、静的メンバ関数として定義した [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_static_1.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_static_1.html" />
	</item>
		<item>
		<title>static・静的メンバ変数</title>
		<link>https://worthliv.com/cpp_static.html</link>
		<comments>https://worthliv.com/cpp_static.html#comments</comments>
		<pubDate>Sun, 09 Jun 2013 06:27:17 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[クラス]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1364</guid>
		<description><![CDATA[変数が、クラスに属していることを宣言するためには、staticキーワードでメンバ変数を宣言します。 staticキーワードで宣言された静的メンバ変数の数は、オブジェクトがいくつ生成されようとも、一つのみのままです。 st [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_static.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_static.html" />
	</item>
		<item>
		<title>定数のconstメンバ関数をクラスに宣言</title>
		<link>https://worthliv.com/cpp_const_2.html</link>
		<comments>https://worthliv.com/cpp_const_2.html#comments</comments>
		<pubDate>Sun, 09 Jun 2013 05:33:05 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[クラス]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1363</guid>
		<description><![CDATA[クラスのメンバ関数には、データの読み込み専用など、メンバ変数の値をまったく変更する必要のないメンバ関数が存在する場合があります。 この読み込み専用のメンバ関数の場合、メンバ変数の値をあらかじめ変更できないように、定数のメ [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_const_2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_const_2.html" />
	</item>
		<item>
		<title>定数のconstメンバ変数をクラスに宣言</title>
		<link>https://worthliv.com/cpp_const_1.html</link>
		<comments>https://worthliv.com/cpp_const_1.html#comments</comments>
		<pubDate>Sun, 09 Jun 2013 05:10:19 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[クラス]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1362</guid>
		<description><![CDATA[クラスでは、定数のメンバを定義できます。 クラスの外側の場合は、定数の変数は、宣言時に初期化する必要があります。 スポンサーリンク const int data_size = 1024; クラスの定数メンバ変数 クラスの [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_const_1.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_const_1.html" />
	</item>
		<item>
		<title>フレンドクラス・friend</title>
		<link>https://worthliv.com/cpp_friend_1.html</link>
		<comments>https://worthliv.com/cpp_friend_1.html#comments</comments>
		<pubDate>Sun, 09 Jun 2013 03:50:22 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[クラス]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1361</guid>
		<description><![CDATA[フレンド関数について解説しましたが、firend宣言は、関数だけでなくクラスにも利用できます。 スポンサーリンク あるクラス（クラスAとします）の中で、別のクラス（クラスBとします）をfriend宣言すると、クラスBが、 [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_friend_1.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_friend_1.html" />
	</item>
		<item>
		<title>フレンド関数・friend</title>
		<link>https://worthliv.com/cpp_friend.html</link>
		<comments>https://worthliv.com/cpp_friend.html#comments</comments>
		<pubDate>Sun, 09 Jun 2013 02:29:15 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[クラス]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1360</guid>
		<description><![CDATA[クラスのメンバ関数でない、通常のルーチン関数から、クラス内のprivate宣言のメンバにアクセスするには、通常のルーチン関数をfriendキーワードで宣言することが必要です。 クラスは、自分のフレンド関数（friend） [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_friend.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_friend.html" />
	</item>
		<item>
		<title>クラスの中にメンバ関数（メソッド）を実装する</title>
		<link>https://worthliv.com/cpp_post_41.html</link>
		<comments>https://worthliv.com/cpp_post_41.html#comments</comments>
		<pubDate>Thu, 06 Jun 2013 18:18:02 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[クラス]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1359</guid>
		<description><![CDATA[コンストラクタで自動的に初期化するでは、inline関数を用いて、クラス宣言の外側でメンバ関数の実装を行いました。 スポンサーリンク class stack { public: void push(const int i [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_41.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_41.html" />
	</item>
		<item>
		<title>explicit・コンストラクタを明示する</title>
		<link>https://worthliv.com/cpp_explicit.html</link>
		<comments>https://worthliv.com/cpp_explicit.html#comments</comments>
		<pubDate>Thu, 06 Jun 2013 18:08:27 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[クラス]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1358</guid>
		<description><![CDATA[クラスのインスタンス化は、以下のようにして行います。 スポンサーリンク class int_a { public: int_a(unsigned int size); int_a exp(10); // インスタンス化  [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_explicit.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_explicit.html" />
	</item>
		<item>
		<title>クラスで自動的に生成されるメンバ関数</title>
		<link>https://worthliv.com/cpp_post_40.html</link>
		<comments>https://worthliv.com/cpp_post_40.html#comments</comments>
		<pubDate>Thu, 06 Jun 2013 17:23:38 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[クラス]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1357</guid>
		<description><![CDATA[明示的に書かれていない場合でも、クラスには、すべてコンストラクタとデストラクタがあります。 クラスには、自動的に生成される、いくつかのメンバ関数が存在します。 スポンサーリンク class::class( ) デフォルト [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_40.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_40.html" />
	</item>
		<item>
		<title>コピーコンストラクタ</title>
		<link>https://worthliv.com/cpp_post_39.html</link>
		<comments>https://worthliv.com/cpp_post_39.html#comments</comments>
		<pubDate>Thu, 06 Jun 2013 15:34:44 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[クラス]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1356</guid>
		<description><![CDATA[コピーコンストラクタとは、クラスをまるごとコピーする特別なコンストラクタのことです。 コピーコンストラクタの宣言の仕方は、以下のようになります。 スポンサーリンク class &#60;クラス名&#62; { public: [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_39.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_39.html" />
	</item>
		<item>
		<title>引数つきのコンストラクタを持つクラス定義</title>
		<link>https://worthliv.com/cpp_post_38.html</link>
		<comments>https://worthliv.com/cpp_post_38.html#comments</comments>
		<pubDate>Thu, 06 Jun 2013 13:43:21 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[クラス]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1355</guid>
		<description><![CDATA[コンストラクタには引数を渡すことができます。 スポンサーリンク #include &#60;string&#62; #include &#60;iostream&#62; // profileクラス class profile  [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_38.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_38.html" />
	</item>
		<item>
		<title>コンストラクタで自動的に初期化する</title>
		<link>https://worthliv.com/cpp_post_36.html</link>
		<comments>https://worthliv.com/cpp_post_36.html#comments</comments>
		<pubDate>Thu, 06 Jun 2013 13:16:00 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[クラス]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1353</guid>
		<description><![CDATA[クラスでのスタック実装の例を考えましたが、クラス利用の際に・・・ スポンサーリンク class stack a_stack; // stack構造体の宣言。classは省略可。 a_stack.init(); // st [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_36.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_36.html" />
	</item>
		<item>
		<title>C++のクラス定義・クラスでのスタック実装</title>
		<link>https://worthliv.com/cpp_c.html</link>
		<comments>https://worthliv.com/cpp_c.html#comments</comments>
		<pubDate>Thu, 06 Jun 2013 12:34:20 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[クラス]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1352</guid>
		<description><![CDATA[前ページで、構造体でのスタック実装を見ました。 構造体でもスタックを実装できましたが、この場合、構造体のデータへのアクセス保護などは考慮されていません。 スポンサーリンク C++のクラスを利用すれば、構造体のようにデータ [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_c.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_c.html" />
	</item>
		<item>
		<title>スタックとキュー</title>
		<link>https://worthliv.com/cpp_post_34.html</link>
		<comments>https://worthliv.com/cpp_post_34.html#comments</comments>
		<pubDate>Thu, 06 Jun 2013 07:02:58 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[クラス]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1349</guid>
		<description><![CDATA[スタックを実装するクラスを作っていく。 と、その前に、スタックとキューの説明。 スタックとキューは、データを操作するためのアルゴリズムで、次の2つの操作を行います。 スポンサーリンク ・要素を追加する ・要素を取り出す  [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_34.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_34.html" />
	</item>
	</channel>
</rss>
