<?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-pointer/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-pointer/feed" />
	<item>
		<title>ツリー</title>
		<link>https://worthliv.com/cpp_post_56.html</link>
		<comments>https://worthliv.com/cpp_post_56.html#comments</comments>
		<pubDate>Mon, 17 Jun 2013 15:14:01 +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=1397</guid>
		<description><![CDATA[リンクリストの場合、要素を検索したり追加する際に、目的とする要素を1つずつ確認する必要があるため時間がかかります。 ツリーというデータ型を使用すると、比較の回数を減らせ速度アップとなります。 スポンサーリンク ツリーはノ [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_56.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_56.html" />
	</item>
		<item>
		<title>二重リンクリスト</title>
		<link>https://worthliv.com/cpp_post_55.html</link>
		<comments>https://worthliv.com/cpp_post_55.html#comments</comments>
		<pubDate>Mon, 17 Jun 2013 13:54:37 +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=1396</guid>
		<description><![CDATA[二重リンクリストは、next_ptr（次の要素を指すポインタ）と、もう1つprev_ptr（前の要素を指すポインタ）を持ちます。 シングルリンクリストは、リンクリストに書いたとおりですので、これを改造した二重リンクリスト [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_55.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_55.html" />
	</item>
		<item>
		<title>リンクリストの指定した箇所に要素を追加</title>
		<link>https://worthliv.com/cpp_post_54.html</link>
		<comments>https://worthliv.com/cpp_post_54.html#comments</comments>
		<pubDate>Mon, 17 Jun 2013 13:24: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=1395</guid>
		<description><![CDATA[リンクリストでは、リンクリストの先頭に要素を追加する方法を考えました。 次は、リンクリストの途中の指定した箇所へと、要素を追加する方法です。 スポンサーリンク リンクリストが3つの要素からなり、数が小さいほうから大きいほ [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_54.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_54.html" />
	</item>
		<item>
		<title>リンクリスト</title>
		<link>https://worthliv.com/cpp_post_53.html</link>
		<comments>https://worthliv.com/cpp_post_53.html#comments</comments>
		<pubDate>Mon, 17 Jun 2013 09:34:59 +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=1394</guid>
		<description><![CDATA[リンクリストとは、配列よりもより柔軟なデータ構造です。 各項目が次の項目をポイントするという風に、項目が数珠繋ぎになったデータ構造のことを指します。 リンクリストのデータ構造をクラス宣言で表すと・・・ スポンサーリンク  [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_53.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_53.html" />
	</item>
		<item>
		<title>delete演算子</title>
		<link>https://worthliv.com/cpp_delete.html</link>
		<comments>https://worthliv.com/cpp_delete.html#comments</comments>
		<pubDate>Mon, 17 Jun 2013 04:14:39 +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=1393</guid>
		<description><![CDATA[new演算子がヒープ領域からメモリを割り当てるのに対し、delete演算子はメモリをヒープ領域に解放します。 スポンサーリンク 通常のオブジェクトの場合 delete ポインタ; ポインタ = NULL; newで配列を [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_delete.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_delete.html" />
	</item>
		<item>
		<title>new演算子でオブジェクト生成</title>
		<link>https://worthliv.com/cpp_new_1.html</link>
		<comments>https://worthliv.com/cpp_new_1.html#comments</comments>
		<pubDate>Mon, 17 Jun 2013 04:08:11 +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=1392</guid>
		<description><![CDATA[以下のような、profクラスの配列を作成しようとすると、メモリを静的に割り当てることになり領域を使いすぎてしまいます。 そこで、動的にメモリ割り当てを行うために、new演算子を用いてオブジェクト生成を行います。 演算子n [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_new_1.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_new_1.html" />
	</item>
		<item>
		<title>new演算子・動的メモリの割り当て</title>
		<link>https://worthliv.com/cpp_new.html</link>
		<comments>https://worthliv.com/cpp_new.html#comments</comments>
		<pubDate>Mon, 17 Jun 2013 01:28:18 +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=1391</guid>
		<description><![CDATA[これまでと同じ方法でポインタを宣言するには、ポイント先に名前つきの変数を用意して、ポインタを使用します。 スポンサーリンク int value; int *value_ptr; value_ptr = &#38;valu [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_new.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_new.html" />
	</item>
		<item>
		<title>構造体とポインタ</title>
		<link>https://worthliv.com/cpp_post_47.html</link>
		<comments>https://worthliv.com/cpp_post_47.html#comments</comments>
		<pubDate>Mon, 10 Jun 2013 10:12: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=1372</guid>
		<description><![CDATA[構造体の配列もポインタで扱うことができ、配列の場合と同様です。 スポンサーリンク #include &#60;string&#62; #include &#60;iostream&#62; struct profile { st [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_47.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_47.html" />
	</item>
		<item>
		<title>配列のポインタ宣言</title>
		<link>https://worthliv.com/cpp_post_46.html</link>
		<comments>https://worthliv.com/cpp_post_46.html#comments</comments>
		<pubDate>Mon, 10 Jun 2013 05:17:07 +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=1370</guid>
		<description><![CDATA[配列とポインタ・アドレスのインクリメントを確認で、「array + 1」で配列のメモリアドレスをインクリメントできることを確認しました。 スポンサーリンク C++では、ポインタと配列を同じように扱うことができます。 ar [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_46.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_46.html" />
	</item>
		<item>
		<title>配列とポインタ・アドレスのインクリメントを確認</title>
		<link>https://worthliv.com/cpp_post_45.html</link>
		<comments>https://worthliv.com/cpp_post_45.html#comments</comments>
		<pubDate>Mon, 10 Jun 2013 03:49:37 +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=1369</guid>
		<description><![CDATA[C++では、ポインタの加算や減産など、ポインタを算術演算することが可能です。 ポインタは、メモリアドレスを保持する変数に過ぎないので、当たり前ですね。 スポンサーリンク 文字型の配列とポインタ #include &#60; [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_45.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_45.html" />
	</item>
		<item>
		<title>定数ポインタ</title>
		<link>https://worthliv.com/cpp_post_43.html</link>
		<comments>https://worthliv.com/cpp_post_43.html#comments</comments>
		<pubDate>Mon, 10 Jun 2013 02:55:35 +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=1367</guid>
		<description><![CDATA[定数のポインタを宣言する場合、すこし難しいです。 スポンサーリンク 定数宣言 まずは、定数の宣言を考えます。 const int data = 5; data = 10; // dataは定数なので、変更は許可されな で [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_43.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_43.html" />
	</item>
		<item>
		<title>ポインタとは</title>
		<link>https://worthliv.com/cpp_post_42.html</link>
		<comments>https://worthliv.com/cpp_post_42.html#comments</comments>
		<pubDate>Mon, 10 Jun 2013 01:33:23 +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=1366</guid>
		<description><![CDATA[ポインタとは スポンサーリンク ポインタとは、変数のアドレスを保持する変数のことです。 このことから、ポインタはアドレス変数とも呼ばれます。 アドレスとは、メモリ上にある番地（場所を表す）のことであり、変数のために確保さ [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_42.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_42.html" />
	</item>
	</channel>
</rss>
