Data Types
Primitive Data Types

The Java programming language requires you to declare all variables before using them.  You can declare the variables by specifying their names and data types. For example, to declare a variable called “age” of numeric data type and the initial value of 1, you the syntax is: int age=1; Java supports not only int, but [...]

Read More
Posted on 3rd November 2009No Comments