0% found this document useful (0 votes)
497 views23 pages

Fundamental Programming Structures in Java

Everything in a Java program must be inside a class. Comments in Java do not show up in the executable program. There are eight primitive types in Java.

Uploaded by

VinayKumarSingh
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PPT or read online on Scribd
Download as ppt
0% found this document useful (0 votes)
497 views23 pages

Fundamental Programming Structures in Java

Everything in a Java program must be inside a class. Comments in Java do not show up in the executable program. There are eight primitive types in Java.

Uploaded by

VinayKumarSingh
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PPT or read online on Scribd
Download as ppt
Download as ppt
You are on page 1/ 23

Contents

• A Simple Java Program


• Comments
• Data Types
• Variables
• Assignments and Initializations
• Operators
• Strings
• Control Flow
• Big Numbers
• Arrays
A Simple Java Program
public class FirstSample
{
public static void main(String[] args)
{
System.out.println("We will not use 'Hello, World!'");
}
}

•Java is case sensitive.


•The keyword public is called an access
modifier.
•Everything in a Java program must be
inside a class.
Comments

Comments in Java, like comments in most


programming languages, do not show up in the
executable program.
Java has three ways of showing comments.
1. The most common method is a //.
2. When longer comments are needed, you can
use the /* and */ comment delimiters that let you
block off a longer comment.
3. Finally, there is a third kind of comment
that can be used to generate documentation
automatically. This comment uses a /** to start and
a */ to end.
Data Types

Java is a strongly typed language.

There are eight primitive types in Java.


• Four of them are integer types;
• Two are floating-point number types;
• One is the character type char,
• One is a boolean type for truth values.
Integers
The integer types are for numbers without
fractional parts.

Type Storage Range (inclusive)


Requirement
–2,147,483,648 to 2,147,483,
int 4 bytes
647 (just over 2 billion)
short 2 bytes –32,768 to 32,767
–9,223,372,036,854,775,808L
long 8 bytes
to 9,223,372,036,854,775,807L
byte 1 byte –128 to 127
Floating-Point Types
The floating-point types denote numbers with
fractional parts.

Storage
Type Requirement Range

approximately ±3.40282347E+38F (6–7


float 4 bytes
significant decimal digits)

approximately
double 8 bytes ±1.79769313486231570E+308 (15
significant decimal digits)
The Character Type
Single quotes are used to denote char constants.
The char type denotes characters in the
Unicode encoding scheme.
Special characters
Escape Sequence Name Unicode Value
\b backspace \u0008
\t tab \u0009
\n linefeed \u000a
\r carriage return \u000d
\" double quote \u0022
\' single quote \u0027
\\ backslash \u005c

The Boolean Type


The boolean type has two values, false and true.
It is used for evaluating logical conditions.
Variables
In Java, every variable has a type.
Eg: double salary;
int vacationDays;
long earthPopulation;
char yesChar;
boolean done;
The rules for a variable name are as follows:
A variable name must begin with a letter, and must
be a sequence of letters or digits.
Symbols like '+' or '©' cannot be used inside variable
names, nor can spaces.
All characters in the name of a variable are significant
and case is also significant.
Cannot use a Java reserved word for a variable name.
Can have multiple declarations on a single line
Assignments and Initializations
After you declare a variable, you must
explicitly initialize it by means of an
assignment statement.
You assign to a previously declared
variable using the variable name on the left,
an equal sign (=) and then some Java expression
that has an appropriate value on the right.
int vacationDays; // this is a declaration
vacationDays = 12; // this is an assignment
One nice feature of Java is the ability to both
declare and initialize a variable on the same line.
For example:
int vacationDays = 12; // this is an initialization
Operators
Operator Function
+ Addition
- Subtraction
* Multiplication
/ Division
% Integer remainder
There is a convenient shortcut for using
binary arithmetic operators in an assignment.
For example,
x += 4; is equivalent to x = x + 4;
Increment and Decrement Operators
x++ adds 1 to the current value of the variable x,
and x-- subtracts 1 from it. They cannot be applied to
numbers themselves.
There are actually two forms of these operators;
you have seen the “postfix” form of the operator
that is placed after the operand. There is also a
“Prefix” form, ++n. Both change the value of the
variable by 1.
int m = 7, n = 7;
int a = 2 * ++m;
int b = 2 * n++;
Relational and boolean Operators
Java has the full complement of relational operators.
To test for equality, a double equal sign, “ == ” is used.
A “ != ” is used for checking inequality.
< (less than), > (greater than), <= (less than or equal),
and >= (greater than or equal) operators.
&& for the logical “and” operator
|| for the logical “or” operator
! is the logical negation operator.

Ternary operator, ?:
condition ? e1 : e2
Evaluates to e1 if the condition is true, to e2 otherwise.

Bitwise Operators
& ("and")
| ("or")
^ ("xor")
~ ("not")
>> right shift
<< left shift
Operator Purpose
+ addition of numbers, concatenation of Strings
+= add and assign numbers, concatenate and
assign Strings
- subtraction
-= subtract and assign
* multiplication
*= multiply and assign
/ division
/= divide and assign
% take remainder
%= take remainder and assign
++ increment by one
-- decrement by one
Operator Purpose
> greater than
>= greater than or equal to
< less than
<= less than or equal to
! boolean NOT
!= not equal to
&& boolean AND
|| boolean OR
== boolean equals
= assignment
~ bitwise NOT
?: conditional
Operator Purpose
| bitwise OR
|= bitwise OR and assign
^ bitwise XOR
^= bitwise XOR and assign
& bitwise AND
&= bitwise AND and assign
>> shift bits right with sign extension
>>= shift bits right with sign extension
and assign
<< shift bits left
<<= shift bits left and assign
>>> unsigned bit shift right
>>>= unsigned bit shift right and assign
Strings
Strings are sequences of characters, such as "Hello".
Java does not have a built-in string type. Instead, the
standard Java library contains a predefined class called,
String.
String e = ""; // an empty string
String greeting = "Hello";
Concatenation
String expletive = "Expletive";
String PG13 = "deleted";
String message = expletive + PG13;
Substrings
String greeting = "Hello";
String s = greeting.substring(0, 4);
Control Flow
Java, like any programming language, supports both
conditional statements and loops to determine control flow.
The Java control flow constructs are identical to those in
C and C++, with some exceptions. There is no goto, but
there is a “labeled” version of break that you can use to
break out of a nested loop
Conditional Statements
if
if- else
while
do… while
for
switch
Big Numbers
If the precision of the basic integer and
floating-point types is not sufficient, you can turn to a
couple of handy classes in the java.math package, called
BigInteger and BigDecimal.
These are classes for manipulating numbers with an
arbitrarily long sequence of digits.
Use the static valueOf method to turn an ordinary
number into a big number:
BigInteger a = BigInteger.valueOf(100);
You cannot use the familiar mathematical operators such
as + and * to combine big numbers. Instead, you must use
methods such as add and multiply in the big number classes.
BigInteger c = a.add(b); // c = a + b
BigInteger d = c.multiply(b.add(BigInteger.valueOf(2)));
// d = c * (b + 2)
Arrays
An array is a data structure that stores a collection of
values of the same type.
You access each individual value through an
integer index.
Declaration of an array a of integers:
int[] a; or int a[];
However, this statement only declares the variable a.
It does not yet initialize a with an actual array. You use
the new operator to create the array.
int[] a = new int[100];
Java has a shorthand to create an array object and supply
initial values at the same time.
int[] smallPrimes = { 2, 3, 5, 7, 11, 13 };
Sorting an Array
If you want to sort an array of numbers, you can
use one of the sort methods in the Arrays class:
int[] a = new int[10000];
...
Arrays.sort(a)
This method uses a tuned version of the QuickSort
algorithm that is claimed to be very efficient on
most data sets.
Multidimensional Arrays
Multidimensional arrays use more than one index
to access array elements. They are used for tables and other
more complex arrangements.
Declaring a matrix in Java is simple enough.
For example:
double[][] balance;
The initialization as follows:
balance = new double[NYEARS][NRATES];
A shorthand notion for initializing multidimensional arrays
without needing a call to new.
For example;
int[][] magicSquare =
{
{16, 3, 2, 13},
{5, 10, 11, 8},
{9, 6, 7, 12},
{4, 15, 14, 1}
};

You might also like