Skip to main content

Constants in java

 Constants in java


    Constants in java refers to fixed value in java that do not change during the execution of a program.



Integer Constants:

    An interger constant refers to a sequence of digits. There are three types of integers, Decimal integers, Octal integer and Hexadecimal integer.

Decimal integer constant is a set of digits, o through 0, preceded by an optional min sign, Examples are:

    123          -321         0          654321

Octal integer constant consists of any combination of digits from the set 0 through 7, with a leading 0. Examples are:

    037            0          0453       05512

A sequence of digits preceded by 0x or 0X is considered as hexadecimal integers, they may also includes alphabets A through F or a through f. Examples are:

    0x2           0x9F              0x4f

Octal and hexadecimal numbers are rarely use in programming.

Real Constants:

    Interegr numbers are inadequate to represent the quantity that vary continuously, such as distance, tempratures, prices etc. These quantities represents by numbers, such numbers are called as real constants. Examples are:

    0.083       -0.75           45.3

Character Constants:

    Character constant contains a single character enclose within a pair of single quote mark. Examples are:

    '5'         'x'         ';'         ' '

String Constants:

    A String constants is a sequence of characters enclosed between double quotes.  The characters may be alphabets, digits, special charactors and blank spaces. Examples are:

    "Hellow Java"         "1997"         "?...!"        "5+6"


Comments

Popular posts from this blog

Decision Making and Branching Statements / Control Statements

 Introduction     Java is a set of statements which executed sequentially in the order in which they appear. This will happen when option or repetitions of certains are not necessary. However, We have a number of situation, where we may have to change the order of execution of statement on bases of certain conditions. This involves a kind of dicision making to see the particular condition occured or not and the direction of execution will execute according to it.     When program braks the sequential flow and jump on the another part of code then it's called branching . When branching is on particular condition then it's called conditional branching . If branches executes without any particular conditions then it's call unconditional branching .     Java supports such decision making capabilities and supports following statements known as Control statement or Decision making statement .     if statements     switch statement   ...

Static and this keyword

Static Keyword:      Most of the time static keyword in java use for memory management. We can use static keyword with variables, methods and also with block (Static block) . 1. Static with variables:     If we declare static keyword with variables then it's called static variables . Static variables are use to access or refer common properties of all objects. The static varibels gets memory only once at the time of loading class loading. It makes program more efficient i.e., It saves memory. For example,     static int length=100; 2. Static with method:     If we use static keyword with method then it's called static method . The static method is belong to class rather than object of class. Static method can invoke or call without creating instance or object of class. For example,     static void print(){          System.out.println("Welcome in Java");     } Examples of static variable, method an...

Jump Statements in java

    Introductions       Loopes perform a set of operations repeatedly until the control variable fails to satisfy the test condition. But in some times we need to skip some of the part of loop then we use the jump statements . For breaking the loop we use continue and break statement . Continue Statement:     When the continue statement called, it will break or stop the current itteration of loop on sameline and start the new iteration. Format of this statement is below:          continue; Brak Statement: After call this statement in the body of loop, it will sop or break the loop on current loop on same line and control goes to the next line after that loop. Format is below:     break; We mostly use this statement in while, do, and for loop concept.