<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Java Bootcamp: Days 2 &amp; 3</title>
	<atom:link href="http://tehbilly.com/42/java-bootcamp-days-2-3/feed/" rel="self" type="application/rss+xml" />
	<link>http://tehbilly.com/42/java-bootcamp-days-2-3/</link>
	<description>Rantalicious Ravings</description>
	<lastBuildDate>Fri, 29 Jan 2010 10:06:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Bruce Markham</title>
		<link>http://tehbilly.com/42/java-bootcamp-days-2-3/comment-page-1/#comment-277</link>
		<dc:creator>Bruce Markham</dc:creator>
		<pubDate>Wed, 16 Sep 2009 15:51:21 +0000</pubDate>
		<guid isPermaLink="false">http://tehbilly.com/?p=42#comment-277</guid>
		<description>Honestly, once you wrap your head around Java, you&#039;ll be 90% there on understanding .NET. Most of the differences are subtle (and non-headache inducing) - whereas the hump of polymorphism and primitives versus reference types you&#039;ll have already completely conquered. Even the base language syntax between Java and C# is 99.9% the same.

The only big day-to-day difference between the two is which functionality is in which class/namespace - and that&#039;s what Google is for.

Keep up the great work at challenging yourself.</description>
		<content:encoded><![CDATA[<p>Honestly, once you wrap your head around Java, you&#8217;ll be 90% there on understanding .NET. Most of the differences are subtle (and non-headache inducing) &#8211; whereas the hump of polymorphism and primitives versus reference types you&#8217;ll have already completely conquered. Even the base language syntax between Java and C# is 99.9% the same.</p>
<p>The only big day-to-day difference between the two is which functionality is in which class/namespace &#8211; and that&#8217;s what Google is for.</p>
<p>Keep up the great work at challenging yourself.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TehBilly</title>
		<link>http://tehbilly.com/42/java-bootcamp-days-2-3/comment-page-1/#comment-276</link>
		<dc:creator>TehBilly</dc:creator>
		<pubDate>Tue, 15 Sep 2009 15:59:00 +0000</pubDate>
		<guid isPermaLink="false">http://tehbilly.com/?p=42#comment-276</guid>
		<description>Yeah, it does help burn a few things into your head. I&#039;m just easily bored, so doing stuff like that above is hard for me. I&#039;d rather be doing interesting things, y&#039;know? But by all means post samples on your blog! It would add more for me to read. :P</description>
		<content:encoded><![CDATA[<p>Yeah, it does help burn a few things into your head. I&#8217;m just easily bored, so doing stuff like that above is hard for me. I&#8217;d rather be doing interesting things, y&#8217;know? But by all means post samples on your blog! It would add more for me to read. :P</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeremy Privett</title>
		<link>http://tehbilly.com/42/java-bootcamp-days-2-3/comment-page-1/#comment-275</link>
		<dc:creator>Jeremy Privett</dc:creator>
		<pubDate>Tue, 15 Sep 2009 09:39:14 +0000</pubDate>
		<guid isPermaLink="false">http://tehbilly.com/?p=42#comment-275</guid>
		<description>Even simple code helps commit the stuff you&#039;re reading to memory. Hopefully, I can start posting code samples to go along with my JoS entries, soon. You&#039;re a step ahead of me, there. :D</description>
		<content:encoded><![CDATA[<p>Even simple code helps commit the stuff you&#8217;re reading to memory. Hopefully, I can start posting code samples to go along with my JoS entries, soon. You&#8217;re a step ahead of me, there. :D</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TehBilly</title>
		<link>http://tehbilly.com/42/java-bootcamp-days-2-3/comment-page-1/#comment-274</link>
		<dc:creator>TehBilly</dc:creator>
		<pubDate>Mon, 14 Sep 2009 22:45:34 +0000</pubDate>
		<guid isPermaLink="false">http://tehbilly.com/?p=42#comment-274</guid>
		<description>Ah-ha, I&#039;ll be sure to include some sample code. But right now it&#039;s literally horribly simple. Like...

&lt;pre lang=&quot;java&quot; line=&quot;1&quot;&gt;import java.util.StringTokenizer;

public class TokenTester
{
	public static void main(String[] arguments)
	{
		StringTokenizer st1, st2;

		String quote1 = &quot;VIZY 3 -1/16&quot;;
		st1 = new StringTokenizer(quote1);
		System.out.println(&quot;Token 1: &quot; + st1.nextToken());
		System.out.println(&quot;Token 2: &quot; + st1.nextToken());
		System.out.println(&quot;Token 3: &quot; + st1.nextToken());

		String quote2 = &quot;NPLI@9 27/32@3/32&quot;;
		st2 = new StringTokenizer(quote2, &quot;@&quot;);
		System.out.println(&quot;\nToken 1: &quot; + st2.nextToken());
		System.out.println(&quot;Token 2: &quot; + st2.nextToken());
		System.out.println(&quot;Token 3: &quot; + st2.nextToken());
	}
}&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Ah-ha, I&#8217;ll be sure to include some sample code. But right now it&#8217;s literally horribly simple. Like&#8230;</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
</pre></td><td class="code"><pre class="java" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">java.util.StringTokenizer</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">class</span> TokenTester
<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><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> arguments<span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
		<span style="color: #003399;">StringTokenizer</span> st1, st2<span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #003399;">String</span> quote1 <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;VIZY 3 -1/16&quot;</span><span style="color: #339933;">;</span>
		st1 <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #003399;">StringTokenizer</span><span style="color: #009900;">&#40;</span>quote1<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</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: #0000ff;">&quot;Token 1: &quot;</span> <span style="color: #339933;">+</span> st1.<span style="color: #006633;">nextToken</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</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: #0000ff;">&quot;Token 2: &quot;</span> <span style="color: #339933;">+</span> st1.<span style="color: #006633;">nextToken</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</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: #0000ff;">&quot;Token 3: &quot;</span> <span style="color: #339933;">+</span> st1.<span style="color: #006633;">nextToken</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #003399;">String</span> quote2 <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;NPLI@9 27/32@3/32&quot;</span><span style="color: #339933;">;</span>
		st2 <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #003399;">StringTokenizer</span><span style="color: #009900;">&#40;</span>quote2, <span style="color: #0000ff;">&quot;@&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</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: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>Token 1: &quot;</span> <span style="color: #339933;">+</span> st2.<span style="color: #006633;">nextToken</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</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: #0000ff;">&quot;Token 2: &quot;</span> <span style="color: #339933;">+</span> st2.<span style="color: #006633;">nextToken</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</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: #0000ff;">&quot;Token 3: &quot;</span> <span style="color: #339933;">+</span> st2.<span style="color: #006633;">nextToken</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://tehbilly.com/42/java-bootcamp-days-2-3/comment-page-1/#comment-273</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Mon, 14 Sep 2009 21:41:52 +0000</pubDate>
		<guid isPermaLink="false">http://tehbilly.com/?p=42#comment-273</guid>
		<description>Would be cool if you could post some of the sample code you&#039;re playing with in this posts, I&#039;d be interested in seeing the similarities with what I know about .NET. :)</description>
		<content:encoded><![CDATA[<p>Would be cool if you could post some of the sample code you&#8217;re playing with in this posts, I&#8217;d be interested in seeing the similarities with what I know about .NET. :)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
