Introduction to
Java Data Types
कोई भी
variable Create करने से पहले आप उसमे किस तरह का
data store करना चाहते है
define करना पड़ता है। इसे ही
data type कहते है।
Java में
data types को 4 categories में
define किया गया है।
Integers
Integers
complete number होते
है। इन
numbers में fractional part (दशमलव और
उसके बाद
की संख्या)
include नहीं किया
जाता है।
Java में Integer data types को उनकी
size के according 4 categories में define किया गया
है।
Type
|
Explanation
|
Example
|
Byte
|
Byte की size 8 bit होती है। -127 से लेकर 128 तक की कोई भी value आप byte में store कर सकते है।
|
byte age = 40;
|
Short
|
Short की size 16 bit होती है। Short में -32,768 से लेकर 32,767 तक की कोई भी value store की जा सकती है।
|
short salary = 25000;
|
Int
|
Int की size 32 bit होती है। Int में -2,147,483,648 से लेकर 2147483747 तक की कोई भी वैल्यू
store की जा सकती है।
|
int population =2,00,000
|
Long
|
Long की size 64 bit होती है। इसमें आप बड़ी से बड़ी value store कर सकते है।
|
long worldpop = 8000000000
|
Floating Point
Numbers
Floating
point numbers वो numbers होते है
जिनमे fractional part (दशमलव और
उसके बाद
की संख्या)
को represent किया जाता
है। जब
आप कोई
important mathematical calculation कर रहे हो तो
इन numbers का बहुत महत्व रहता
है। Java में floating point data types को 2 categories में define किया गया
है।
Type
|
Explanation
|
Example
|
Float
|
Float
single precision value को represent करता है। Float की size 32 bit होती है।
|
float
temp = 34.4;
|
Double
|
Double
double precision value को represent करता है। Doubleकी size 64 bit होती है।
|
double
pi = 3.1416;
|
Nice note in hindi
ReplyDelete