Satellite හරහා නොමිලේ TV බලමු

TV බැලිල්ල අලුත් අත්දැකීමක් නොවුනත් තනියෙම Satellite එකකට Dish එකක් Align කරල ඒකෙන් TV බලන එක වෙනනම ආතල් එකක්..

iOS 14 අලුත් විශේෂාංග. Apple ලා Android වලින් මොනවද අරන් තියෙන්නෙ

Apple Special Event එකේදි (June 22, 2020) Appleල එයාලගෙ Operating System එකේ ලොකුම විශේෂාංග මොනවද...

ඉර හඳ තරු

කළුවර අහසට ආලෝකය දෙන්න තරු රැසක් මළානික ආලෝකයක් දෙද්දි ආවාට පිරුණු වටකුරු දෙයක් ඒ එළියට වඩා හැමෝම ආස...

සිව්වන වසර ආරම්භය

දැන් මගෙ අතින් බ්ලොග් ලියවෙන්නෙ නැති ද මන්දා.ඒත් ඉතින් සංවත්සරයක් නිසා ලියන්නත් එපැයි.. මාසෙකට පෝස්ට් එකක් දැම්මාට ඕක...

Root නොකර Android එකට සිංහල උගන්වමු

අද කියන්න යන්නේ Android ධාවනය වන ඒවට root නොකර සිංහල දාගන්න විදිය. මුලින්ම කියන්න ඕන මේ ක්‍රමය...

Pages

2012-01-06

Signed Int in Java

while the code in java sometimes i wanted to use signed integer type. but like C++ coudn't find a way to use signed int.  so thought about a way to convert negative integers to positive.

int integerVariable;
integerVariable =-20;
//now convert negative values to positive
if(integerVariable<0)
     integerVariable=0-integerVariable;


now just use integerVariable as your wish. it will only contain positive values.

How to Convert Integer Variable to String in Java

This is the simplest way i found on my experiments in type casting int to String in Java

//initialize a integer type variable
int integerVariable = 4;
//initialize a String type variable
String stringVariable;
//Type Cast int to String
stringVariable=integerVariable="";


is there a simple way than that your comments are really appreciate.