<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2.1" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Learning Java</title>
	<link>http://blog.myweb-info.com/2008/08/14/learning-java/</link>
	<description>My Web Information Blog</description>
	<pubDate>Thu, 29 Jul 2010 12:10:49 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>

	<item>
		<title>By: Tons</title>
		<link>http://blog.myweb-info.com/2008/08/14/learning-java/#comment-7</link>
		<author>Tons</author>
		<pubDate>Fri, 15 Aug 2008 05:58:33 +0000</pubDate>
		<guid>http://blog.myweb-info.com/2008/08/14/learning-java/#comment-7</guid>
		<description>1.  Class JOptionPane - defined in a package called javax.swing. It contains methods that display a dialog box containing information.

2.  import - statement to locate classes required  to compile a java program.

3.  showMessageDialog - part of class JOptionPane. It shows the messages in a dialogue box with the result of an arguments.

4.  Integer.parseInt - converts its String argument to an integer. Supposing you enter in a dialogue box a number then you can you this tag to convert it to integer.</description>
		<content:encoded><![CDATA[<p>1.  Class JOptionPane - defined in a package called javax.swing. It contains methods that display a dialog box containing information.</p>
<p>2.  import - statement to locate classes required  to compile a java program.</p>
<p>3.  showMessageDialog - part of class JOptionPane. It shows the messages in a dialogue box with the result of an arguments.</p>
<p>4.  Integer.parseInt - converts its String argument to an integer. Supposing you enter in a dialogue box a number then you can you this tag to convert it to integer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tons</title>
		<link>http://blog.myweb-info.com/2008/08/14/learning-java/#comment-6</link>
		<author>Tons</author>
		<pubDate>Fri, 15 Aug 2008 05:47:24 +0000</pubDate>
		<guid>http://blog.myweb-info.com/2008/08/14/learning-java/#comment-6</guid>
		<description>1.  System.out - known as the standard output object. It allows java applications to display strings and other types of information in the command window from which the java application is executed.

2.  println - of the System.out displays a line of information in the command window.

3.  System.out.print - does not position to the beginning of the next line in the command window when it finishes displaying its argument.  The next character that is displayed in the command window will appear immediately after the last character displayed with System.out.print.</description>
		<content:encoded><![CDATA[<p>1.  System.out - known as the standard output object. It allows java applications to display strings and other types of information in the command window from which the java application is executed.</p>
<p>2.  println - of the System.out displays a line of information in the command window.</p>
<p>3.  System.out.print - does not position to the beginning of the next line in the command window when it finishes displaying its argument.  The next character that is displayed in the command window will appear immediately after the last character displayed with System.out.print.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tons</title>
		<link>http://blog.myweb-info.com/2008/08/14/learning-java/#comment-5</link>
		<author>Tons</author>
		<pubDate>Fri, 15 Aug 2008 05:24:59 +0000</pubDate>
		<guid>http://blog.myweb-info.com/2008/08/14/learning-java/#comment-5</guid>
		<description>Day 2

1. Access Modifier - specifies the circumstances in which the class can be accessed. Example is public which indicates that this code can be accessed by all objects or can be extended, or used as a basis for another class. If public is omitted then you limit it only for this class. Access Modifier is followed by the word  class.

2.  Class Name - Example is public class XXX.  The class name here is XXX which is a name assigned by you.  It should be user-friendly word that is not on the list of reserved words, contain no spaces and must not begin with number. 
Example: 
          Record123 (good)     Record 123 (bad with space)
          Employ               123data    (bad begin with numbers)

3.  public static void main ( String args[] )  -  is a part of every Java application.
    A.  Paranthesis after main - indicate that main is a program building block called a method.
    B.  void - indicate that this method will perform a task but will not return any information when it completes its task.</description>
		<content:encoded><![CDATA[<p>Day 2</p>
<p>1. Access Modifier - specifies the circumstances in which the class can be accessed. Example is public which indicates that this code can be accessed by all objects or can be extended, or used as a basis for another class. If public is omitted then you limit it only for this class. Access Modifier is followed by the word  class.</p>
<p>2.  Class Name - Example is public class XXX.  The class name here is XXX which is a name assigned by you.  It should be user-friendly word that is not on the list of reserved words, contain no spaces and must not begin with number.<br />
Example:<br />
          Record123 (good)     Record 123 (bad with space)<br />
          Employ               123data    (bad begin with numbers)</p>
<p>3.  public static void main ( String args[] )  -  is a part of every Java application.<br />
    A.  Paranthesis after main - indicate that main is a program building block called a method.<br />
    B.  void - indicate that this method will perform a task but will not return any information when it completes its task.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
