What is Data Types in Java:-
- It is specifiers the type of data that a variable can store such as integers, float, characters, string, etc.
- In another word : It is a type of data which is used in the program.
- There are many pre-defined data types in JAVA library like int, char, float,string etc.
Types of DataType in Java
1. Primitive DataTypes :
- These data Types which is pre- defined in the library is called primitive data type.
- It is named by a keyword for example int, float, char, long, dooble etc.
- This datatype are fastest from another and used in directly in store of value so fastest.
- These are also called Built-in-DataTypes.
- There are 8 Primitive datatypes in java. For example:- byte, short, int, long, float, double, boolean and char
1.
Integer Type :- These data types store only Whole Numbers.
Types |
Size
in bytes |
Range |
byte |
1 |
-128 to 127 |
short |
2 |
-32,768 to 32,767 |
int |
4 |
-2,147,483,648 to 2,147,483,647 |
long |
8 |
-9,223,372,036,854,775,808 to 9,223,372,036,854,775,808 |
Types |
Size
in bytes |
Range |
float |
4 |
3.4e-038 to 3.4e+0.38. |
double |
8 |
1.7e-308 to 1.7e+038. |
Boolean Types
Keyword |
boolean |
Syntax |
boolean x, |
Value |
True/ False |
Default |
False |
Keyword |
|
char |
Syntax |
|
char x; |
Value |
|
‘a’ , ‘@’, ‘9’ |
Default |
|
0 to65536 |
- These Data Types which is derived from Primitive Data Types is called non- primitive data types.
- It is also called refrence data type.
- The don't store the value, but store a refrence to that value.
- Example:- Array, class, interface,function, etc.
Introduction to java strings
Java strings
- किसी भी string में जितने characters होते है वो उस string की length होते है। किसी भी string की length पता करने के लिए आप length() method यूज़ कर सकते है। इसके लिए आप उस string पर length method call करते है।
- जब किन्हीं 2 strings को जोड़कर एक तीसरी string बनायीं जाती है, तो उसे string concatenation कहते है। ऐसा आप + operator के द्वारा भी कर सकते है और concat() method के द्वारा भी कर सकते है। इन दोनों ही तरीकों के उदाहरण निचे दिए जा रहे है।
- ये method string में से किसी एक method को extract करने के लिए यूज़ किया जाता है। Strings की indexing arrays की तरह ही होती है। 1st String character 0 index पर होता है। इसलिए आप string के किसी भी single character को access कर सकते है। इसके लिए आप charAt () method यूज़ करते है। जो index number आप इस method में pass करते है ये method उसी index के character को return करता है।
- किसी string में sub string search करने के लिए आप substring () method यूज़ करते है। इस method में आप 2 arguments pass करते है। पहला argument वो index number है, जंहा से आप string को access करना चाहते है।और दूसरा argument वो index number है, जँहा तक की string आप access करना चाहते है। ये method starting index से लेकर ending index तक की string return करता है।
- कौन सी sub string किस index पर है ये पता करने के लिए आप index Of() method यूज़ करते है। इस method में एक sub string pass की जाती है। ये method उस sub string stating index return करता है।
- कोई भी 2 strings को compare करने के लिए Equals () method यूज़ किया जाता है। यदि दोनों strings equal होती है तो ये method true return करता है। एक string पर इस method को call किया जाता है और दूसरी string argument की तरह pass की जाती है।
- इसका उदाहरण निचे दिया जा रहा है।
Comments