Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Spring Framework | Web Services | BioInformatics | Java Server Faces | Jboss 3.0 tutorial | Hibernate 3.0 | XML
 
 
Hot Web Programming Job

 

Tutorial Categories: Ajax | Articles | JSP | Bioinformatics | Database | Free Books | Hibernate | J2EE | J2ME | Java | JavaScript | JDBC | JMS | Linux | MS Technology | PHP | RMI | Web-Services | Servlets | Struts | UML


 

Java Tutorials

Core Java
JSP
Servlet
JDBC
Hibernate
Struts 1
Struts 2
JSF
Spring
J2EE
J2ME
Web Services
Ajax
Dojo
MySQL
Latest Comments
Contents are not d
Please Use JAVA no
hidden tag in orku
Getting good knowl
Why the output on
  All Comments...
 

 

 
Struts Tutorials
*Stuts TOC
*Apache Struts Introduction
* Struts Controller
* Struts Action Class
* Struts ActionFrom Class
* Using Struts HTML Tags
*Struts Validator Framework    
*Client Side Address Validation    
*Struts Tiles
*tiles-defs.xml
*Struts DynaActionForm
*Struts File Upload
*Struts DataSource
*AGGREGATING ACTIONS
*Internationalization
Struts Resources
*Struts Books
*Struts Articles
*Struts Frameworks
*Struts IDE
*Struts Alternative
*Struts Links
*Struts Presentations
*Struts Projects
*Struts Software
*Struts Reference
*Struts Resources
*Other Struts Tutorial
Visit Forum! Post Questions!
Jobs At RoseIndia.net!

Have tutorials?
Add your tutorial to our Java Resource and get tons of hits.

We offer free hosting for your tutorials. and exposure for thousands of readers. drop a mail
roseindia_net@yahoo.com
 
   

 
Join For Newsletter

Powered by groups.yahoo.com
Visit Group! Post Questions!

Variables and Types

[an error occurred while processing this directive]
Variable
Data in memory is referred to by name. This is called a variable. You can think of a variable name as the human-usable equivalent of a memory address.
Type
Every variable has a type (what kind of thing it is). Eg, int, String, ...
Declaration
Every variable must be declared once before using it. This tells the compiler that you're going to use it, and what kind of a thing it is.
   String fullName;
Value
Every variable has a value. You can use the value in a calculation, or assign a new value to a variable. All variables must have a value assigned to them before they can be used.
   fullName = "Michael Mortimer Maus";

Assignment statement

An assignment statement has this form.

   variable = expression;

Where expression can be one of the following:

  • A constant.
       fullName = "Brenda Begoode";
  • Another variable.
       fullName = nameEntered;
  • A more complex expression using method calls and operators.
       fullName = JOptionPane.showInputDialog(null, "Enter your name - or else!");

Types

  • Numbers -- integer and floating-point. (Wu p87...)
  • Strings
  • Many others.

Numeric types

  • Integers - numbers without a decimal point
    • byte, short, int, long
    • We will use int for integer variables.
    • int range is -2147483648 to +2147483647 .
    •    int age;
         age = 24;
  • Floating-point - numbers with a decimal point
    • float, double
    • We will use double for floating-point variables.
    • double range is about +/- 10308.
    • double precision is about 15 significant digits.
    •    double temperature;
         temperature = 65.377;

More than one variable in same declaration

It's possible to declare more than one variable in the same declaration.

   double height, weight;

But I would prefer that you put them in separate declarations. It makes documenting them easier, and avoids errors in certain cases.

   double height;  // Height in centimeters.
   double weight;  // Weight in kilograms.

Declaring and initializing in one statement.

Before you can use a variable, you have to declare it and initialize it.

   String fullName;
   fullName = "nobody";

It is common to initialize a variable in the declaration.

   String fullName = "nobody";

Numeric operators

  • You can perform calculations on numbers with these common operations.
    • Addition (+) 8 + 3 is 11
    • Subtraction (-) 8 - 3 is 5
    • Multiplication (*) 8 * 2 is 16
    • Division (/) 8 / 2 is 4
    • Remainder (%) 5 % 3 is 2
  • Warning: integer division produces integer result. 3 / 2 is 1, not 1.5
  • If either operand is floating-point, the result is floating-point. This applies to all numeric operations (not just division).
    • 3 / 2 is 1 (integer)
    • 3.0 / 2 is 1.5 (floating-point)
    • 3 / 2.0 is 1.5 (floating-point)
    • 3.0 / 2.0 is 1.5 (floating-point)

Precedence and the order of operations

  • Multiplication, Division, and Remainder are performed before Addition and Subtraction
        a + b * c   is    a + (b * c)
  • Use parentheses to control order of evaluation.
  • Equal precedence operations done left-to-right. a+b+c is (a+b)+c

String Concatenation

  • Concatenation - Creates a new string by following left operand by right operand.
  • If one of the operands is String, it will convert the other to String if necessary.
  • Example
        String s;
        s = "abc" + "def";    // same as s = "abcdef";
        s = "abc" + 4;        // same as s = "abc4"
        s = "abc" + (3 + 4);  // same as s = "abc7"
        s = "abc" + 3 + 4;    // same as s = "abc34"

Common String methods (Wu p61...)

String s1 = "goodbye";
String s2;
int    i;
  • Note: characters in a String are numbered starting at 0.
  • substring
        s2 = s1.substring(0,3);  // same as s2 = "goo"
        s2 = s1.substring(1, 5); // same as s2 = "oodb"
  • length
        i = s1.length();  // same as i = 7
        s2 = s1.substring(i-1, i);  // last char in s1 (assuming i=s1.length()
  • searching with indexOf
        i = s1.indexOf("b");   // same as i = 4
        i = s1.indexOf("bye"); // same as above
        i = s1.indexOf("B");   // i = -1  Uppercase not same as lowercase.

End

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
  JDO Tutorials
  EAI Articles
  Struts Tutorials
  Java Tutorials
  Java Certification

Tell A Friend
Your Friend Name
Search Tutorials

 

 
 
Browse all Java Tutorials
Java JSP Struts Servlets Hibernate XML
Ajax JDBC EJB MySQL JavaScript JSF
Maven2 Tutorial JEE5 Tutorial Java Threading Tutorial Photoshop Tutorials Linux Technology
Technology Revolutions Eclipse Spring Tutorial Bioinformatics Tutorials Tools SQL
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2007. All rights reserved.