<?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-overload/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-overload/feed" />
	<item>
		<title>小数点以下1桁の計算を行うクラス・演算子オーバーロードの実験</title>
		<link>https://worthliv.com/cpp_1.html</link>
		<comments>https://worthliv.com/cpp_1.html#comments</comments>
		<pubDate>Sun, 16 Jun 2013 07:46: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=1387</guid>
		<description><![CDATA[演算子オーバーロードの実験として、小数点以下1桁にそろえて乗算の計算結果を返すクラスを作ってみました。 スポンサーリンク #include &#60;iostream&#62; #include &#60;assert.h&#038;g [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_1.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_1.html" />
	</item>
		<item>
		<title>オーバーロードが可能な演算子</title>
		<link>https://worthliv.com/cpp_post_50.html</link>
		<comments>https://worthliv.com/cpp_post_50.html#comments</comments>
		<pubDate>Sun, 16 Jun 2013 07:11: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=1386</guid>
		<description><![CDATA[C++で、オーバーロードが可能な演算子をまとめます。 スポンサーリンク 二項演算子 +　　　加算 -　　　減産 *　　　乗算 -　　　除算 %　　　剰余 ^　　　 ビットの排他的論理和 &#038;　　　ビットの論理積  [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_50.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_50.html" />
	</item>
		<item>
		<title>グローバル関数で演算子のオーバーロード</title>
		<link>https://worthliv.com/cpp_post_49.html</link>
		<comments>https://worthliv.com/cpp_post_49.html#comments</comments>
		<pubDate>Sun, 16 Jun 2013 06:42: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=1385</guid>
		<description><![CDATA[前のページ（operatorキーワード・演算子（オペレーター）のオーバーロード）では、演算子のオーバーロードをクラスのメンバ関数として定義しました。 クラスではなく、グローバル関数としても、演算子のオーバーロードを定義で [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_post_49.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_post_49.html" />
	</item>
		<item>
		<title>operatorキーワード・演算子（オペレーター）のオーバーロード</title>
		<link>https://worthliv.com/cpp_operator.html</link>
		<comments>https://worthliv.com/cpp_operator.html#comments</comments>
		<pubDate>Sun, 16 Jun 2013 04:02:14 +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=1384</guid>
		<description><![CDATA[C++では、演算子をオーバーロードすることが可能です。 オーバーロードは、関数のオーバーロードで紹介しました。 スポンサーリンク 関数だけでなく、+, -, *, / のようなC++の演算子も、オーバーロードして独自の機 [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/cpp_operator.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/cpp_operator.html" />
	</item>
	</channel>
</rss>
