java operator in hindi
operators
- जावा में ऑपरेटर एक महत्वपूर्ण operation perform करता है जैसे की +, -, *, % इत्यादी |
- ऑपरेटर ये unary और binary दो प्रकार के होते हैं ऑपरेटर के साथ उपयोग होने वाले वेरिएबल को operand कहते हैं।
- unary operator एक operand के साथ apply होते हैं और binary operator 2 operand पर apply होते हैं।
- operand का उपयोग आप वेरिएबल पर operation perform करने के लिए करते हैं।
जावा में ऑपरेटर के प्रकार।
- unary operators,
- Arithmetic operators
- Shift operators
- Relational operators
- Bitwise operators
- Logical operators
- Ternary or conditional operators
- Assignment operators
- Instance operator
unary operators
++ (Increment) | 1 से value को increase करता है। | a++ |
— (Decrement) | 1 से value को Decrements करता है। | b– |
Arithmetic Operators
Operator | Description | Example |
---|---|---|
+ (addition) | ये दो operands को add करता है। | a+b |
– (substraction) | ये right operands से left operand को निकाल देता है। | a-b |
* (multiplication) | ये दो operands को multiply करता है। | a*b |
/ (Division) | ये right operands द्वारा left operand को divide करता है। | a/b |
% (Modulus) | ये right operands द्वारा left operand को divide करता है| | a%b |
++ (Increment) | 1 से value को increase करता है। | a++ |
— (Decrement) | 1 से value को Decrements करता है। | b– |
for Example:-
class Demo
{
public static void main(String[] args)
{
int x =20, y = 5, z; c = a + b;
system.out.println(“Addition of x and y” + z);
z = x – y;
system.out.println(“substraction of x and y” + z);
z = x * y;
system.out.println(“Multiplication of x and y” + z);
z = x / y;
system.out.println(“Division of x and y” + z);
z = x % y;
system.out.println(“Reminder” of x and y” + z);
}
}
{
public static void main(String[] args)
{
int x =20, y = 5, z; c = a + b;
system.out.println(“Addition of x and y” + z);
z = x – y;
system.out.println(“substraction of x and y” + z);
z = x * y;
system.out.println(“Multiplication of x and y” + z);
z = x / y;
system.out.println(“Division of x and y” + z);
z = x % y;
system.out.println(“Reminder” of x and y” + z);
}
}
Shift Operators
(<<)Left shift | less than operator | a<< |
(>>) Right shift | greater than operators | b– |
Relational operators
Operator | Description | Example |
---|---|---|
< (Less than) | एक operandकी value दुसरे operand से कम हो तो ये true return करता है | | a |
>(Greater than) | एक operand की value दुसरे operand से ज्यादा हो तो ये true return करता है| | a>b |
<= (Less than or equal to) | जब एक operand की value दुसरे operand से कम हो या बराबर हो तो ये true return करता है| | (A <= B) |
>= (Greater than or equal to) | जब एक operand की value दुसरे operand से ज्यादा हो या बराबर हो तो ये true return करता है| | (A >= B) |
= = (equal to) | दो operand जब बराबर(equal)होते है तब ये true return करता है| | (A == B) |
!= (not equal to) | दो operand जब एक से अलग होते है तब ये true return करता है| | (A != B) |
Good information