<?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/"
	>

<channel>
	<title>Silveira Neto &#187; MAX_VALUE</title>
	<atom:link href="http://silveiraneto.net/tag/max_value/feed/" rel="self" type="application/rss+xml" />
	<link>http://silveiraneto.net</link>
	<description>the world is a pixel</description>
	<lastBuildDate>Sun, 08 Jan 2012 05:17:57 +0000</lastBuildDate>
	<language>pt-br</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>Integer.MAX_VALUE and Integer.MIN_VALUE</title>
		<link>http://silveiraneto.net/2008/04/11/integermax_value-and-integermin_value/</link>
		<comments>http://silveiraneto.net/2008/04/11/integermax_value-and-integermin_value/#comments</comments>
		<pubDate>Sat, 12 Apr 2008 01:09:52 +0000</pubDate>
		<dc:creator>Silveira</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[jeg]]></category>
		<category><![CDATA[MAX_VALUE]]></category>
		<category><![CDATA[MIN_VALUE]]></category>

		<guid isPermaLink="false">http://silveiraneto.net/?p=829</guid>
		<description><![CDATA[You should know that variable values are cyclic in Java. public class Test&#123; public static void main&#40;String args&#91;&#93;&#41;&#123; System.out.println&#40;Integer.MAX_VALUE&#41;; System.out.println&#40;Integer.MIN_VALUE&#41;; int x = Integer.MAX_VALUE + 1; System.out.println&#40;x&#41;; &#125; &#125; This produces: 2147483647 -2147483648 -2147483648]]></description>
			<content:encoded><![CDATA[<p>You should know that variable values are cyclic in Java.</p>
<div class="wp_syntax">
<div class="code">
<pre class="java java" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">class</span> Test<span style="color: #009900;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">static</span> <span style="color: #000066; font-weight: bold;">void</span> main<span style="color: #009900;">&#40;</span><span style="color: #003399;">String</span> args<span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
     <span style="color: #003399;">System</span>.<span style="color: #006633;">out</span>.<span style="color: #006633;">println</span><span style="color: #009900;">&#40;</span><span style="color: #003399;">Integer</span>.<span style="color: #006633;">MAX_VALUE</span><span style="color: #009900;">&#41;</span>;
     <span style="color: #003399;">System</span>.<span style="color: #006633;">out</span>.<span style="color: #006633;">println</span><span style="color: #009900;">&#40;</span><span style="color: #003399;">Integer</span>.<span style="color: #006633;">MIN_VALUE</span><span style="color: #009900;">&#41;</span>;
     <span style="color: #000066; font-weight: bold;">int</span> x <span style="color: #339933;">=</span> <span style="color: #003399;">Integer</span>.<span style="color: #006633;">MAX_VALUE</span> <span style="color: #339933;">+</span> <span style="color: #cc66cc;">1</span>;
     <span style="color: #003399;">System</span>.<span style="color: #006633;">out</span>.<span style="color: #006633;">println</span><span style="color: #009900;">&#40;</span>x<span style="color: #009900;">&#41;</span>;
  <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre>
</div>
</div>
<p>This produces:</p>
<blockquote><p>2147483647<br />
-2147483648<br />
-2147483648</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://silveiraneto.net/2008/04/11/integermax_value-and-integermin_value/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

