Wednesday, April 8, 2015

Lesson 02


ඉතින් යාලුවනේ කොහොමද අද මම ඔයාලට කියල දෙන්න යන්නේ java වල අපිට තියන variables, data types වගේ ඒවා ටිකක් ගැන 

මුලින් ම එහෙනම් අපි බලමුකෝ මොනවද මේ variable කියන්නේ කියල.

"Variable is  name of a reserved area allocated in memory."


අපිට java ගත්තහම variable ජාති 3ක් හම්බවෙනවා ඒවා තමයි,

  • Local Variable(Automatic Variable/ Stack Variable)
  • Instance Variable(Non Static Fields/ Global Variable)
  • Static Variable(Class Variable)



Local Variable(Automatic Variable/ Stack Variable)

මෙවගෙ ලක්ෂණ ටිකක් තියනවා අපි බලමු ඒ මොනවද කියල,
  • Local variables are declared in methods,   constructors, or blocks.
  • Local variable will be destroyed once it exits the method, constructor or block.
  • Access modifiers cannot be used for local variables.
  • Local variable does not initialize to default. Local variable should be explicitly assigning value. Local Variables are live within method scope only.

Instance Variable(Non Static Fields/ Global Variable)

  •       Instance Variable values are depend on the object which created.
  •       Class Variable values are depend on the Class. Class variables are known as class constants.

Static Variable(Class Variable)

  • Static variables are created when the program starts and destroyed when the program stops.
  •  Static variables are loading with the class load time.Static variables can be accessed by calling with the class name. 


මම මේ මේ variable type 3ම ඔයාලට එක example එකකින් පෙන්නන්නම් කොහොමද use කරන්නේ කියල 


class VariableTest 
{  

int x= 100;  //instance variable  

static int y= 150;  //static variable  

void method ()
        {  

int z = 90;  //local variable  

        }  

}    


එහෙනම් ඉතින් දැන් අපි යමු data types වලට, data types ගත්තහම අපිට 

  • Primitive Data Type
  • Non Primitive Data Type

විදියට කොටස් දෙකකට බෙදන්න පුළුවන් 

මෙන්න මේක බැලුවම හොදට තේරෙයි කොහොමද වෙන්නේ කියල 



primitive data type එක ගත්තහම අපිට data type 8ක් හම්බවෙනවා ඒවා තමයි,

  • byte
  • short
  • int
  • long
  • float
  • double
  • char
  • boolean

මේ data type ගත්තහම ඔයාල දැනගන්න ඕනේ වැදගත් දේවල් ටිකක් තියනව මේ ටික මතක තියාගන්න අපිට මේවා ඉස්සරහට වැදගත් වෙනවා.

byte
  • Byte data type is an 8-bit signed two's complement integer.
  • Minimum value is -128 (-2^7)
  • Maximum value is 127 (inclusive)(2^7 -1)
  • Default value is 0
  • Byte data type is used to save space in large arrays, mainly in place of integers, since a byte is four times smaller than an int.
  • Example: byte a = 100 , byte b = -50


short
  • Short data type is a 16-bit signed two's complement integer.
  • Minimum value is -32,768 (-2^15)
  • Maximum value is 32,767 (inclusive) (2^15 -1)
  • Short data type can also be used to save memory as byte data type. A short is 2 times smaller than an int
  • Default value is 0
  • Example: short s = 10000, short r = -20000




int
  • Int data type is a 32-bit signed two's complement integer.
  • Minimum value is - 2,147,483,648.(-2^31)
  • Maximum value is 2,147,483,647(inclusive).(2^31 -1)
  • Int is generally used as the default data type for integral values unless there is a concern about memory.
  • The default value is 0
  • Example: int a = 100000, int b = -200000



long
  • Long data type is a 64-bit signed two's complement integer.
  • Minimum value is -9,223,372,036,854,775,808.(-2^63)
  • Maximum value is 9,223,372,036,854,775,807 (inclusive). (2^63 -1)
  • This type is used when a wider range than int is needed.
  • Default value is 0L
  • Example: long a = 100000L, int b = -200000L



float
  • Float data type is a single-precision 32-bit IEEE 754 floating point.
  • Float is mainly used to save memory in large arrays of floating point numbers.
  • Default value is 0.0f
  • Float data type is never used for precise values such as currency.
  • Example: float f1 = 234.5f



double
  • double data type is a double-precision 64-bit IEEE 754 floating point.
  • This data type is generally used as the default data type for decimal values, generally the default choice.
  • Double data type should never be used for precise values such as currency.
  • Default value is 0.0d
  • Example: double d1 = 123.4



char
  • char data type is a single 16-bit Unicode character.
  • Minimum value is '\u0000' (or 0).
  • Maximum value is '\uffff' (or 65,535 inclusive).
  • Char data type is used to store any character.
  • Example: char letter A ='A'



boolean
  • boolean data type represents one bit of information.
  • There are only two possible values: true and false.
  • This data type is used for simple flags that track true/false conditions.
  • Default value is false.
  • Example: boolean one = true




අයෙත් වැදගත් ම දේ තමයි මේ data types වල default values මේ ටිකත් මතක තියාගන්න ඕනේ,



අහ්හ් තව පොඩ්ඩෙන් අමතක වෙනවා ඔයාලට පොඩි දෙයක් කියල දෙන්න මේ කියන්න හදන්නේ java වල තියන Escape sequences ගැනයි

හික් හික්  එහෙනම් ඉතින් කස්ටිය මේ ටිකක්ත් බලාගන්නකෝ




එහෙනම් ඉතින් දැන් මට යන්න වෙලාව හරි  වැඩ ගොඩාක් තියනව කරන්න අයෙත් අලුත් පොස්ටුවකුත් අරගෙන එන්නම් එතකන් හැමෝටම ජය වේවා!!!













No comments: