Thursday, July 20, 2017

Variable & Datatypes in Java

Variable:
Variable হল  ডাটা রাখার location.
Java Types of Variable:
1.Local variable: যে variable method এর মধ্যে declare করা হয় সেই গুলা local variable.

2.Instance Variable: যে variable class এর ভেতর কিন্তু method এর বাইরে।


3.Static Variable: static কী ওয়ার্ড দিয়ে declare করা হয়।



Datatype:
Variable নেওয়া মানে memory তে data রাখার জায়গা করে দেয়া।মানে কি type ডাটা হতে পারে .such as int,char,string, boolean.
আর সেটা বলে দেয়া হল data type.

In jave ,there are two data types:
1.primitive data case
2.non-primitive data case

Primitive data types আট ধরনের
তা হল:
Boolean,char,byte, short,int,long,float

Byte:8 bit
Range:-128 to 127
Short: 16 bit
Int :32 bit
Long: 64 bit
Float: Float data type is a single-precision 32-bit IEEE 754 floating point.
Example:float f1=234.5f

Double:double data type is a double-precision 64 bit-IEEE 754 floating point
Example:double d1= 124.5

char:char data type is a single 16-bit unicode character.
Example: char letterA ='A'


Non-primitive: String,array,etc


//source from Mastering java by Rubel Vai….

Example code:
public class DataType {

      public static void main(String[] args) {
            // TODO Auto-generated method stub
            //Example primtive data types
            boolean result = true;
            short sho = 10;
            char captalc = 'C';
            byte b = 100;
            double d = 4.8d;
            int i = 100000;
            long l = 156473890;
            float f = 9.494844f;
            char my_plus_sign = '+';
           
           
            //reference /object data types
            String s ="Something !";
            String my_supercool_array [] = new String[20];
            Scanner my_scan =new Scanner(System.in);

      }

}


No comments:

Post a Comment