जावा बेसिक ऑपरेटर्स सम्बंधित जानकारी (Java Basic Operators in Hindi)

हम इस ट्यूटोरियल में सीखने वाले है कि जावा बेसिक ऑपरेटर्स (Java Basic Operators) और हम इसे कैसे इस्तमाल कर सकते हैं? जावा variables में हेरफेर करने के लिए ऑपरेटरों का एक समृद्ध सेट प्रदान करता है। हम सभी जावा ऑपरेटरों को निम्नलिखित समूहों में विभाजित कर सकते हैं –

  • अरिथमेटिक ऑपरेटर (Arithmetic Operators)
  • रिलेशनल ऑपरेटर (Relational Operators)
  • बिटवाइज़ ऑपरेटर (Bitwise Operators)
  • लॉजिकल ऑपरेटर (Logical Operators)
  • असाइनमेंट ऑपरेटर (Assignment Operators)
  • मिस्क ऑपरेटर (Misc Operators)

अरिथमेटिक ऑपरेटर (Arithmetic Operators in Hindi)

अंकगणित संकारकों का उपयोग गणितीय व्यंजकों में उसी प्रकार किया जाता है जिस प्रकार बीजगणित में किया जाता है। निम्न तालिका अंकगणितीय ऑपरेटरों को सूचीबद्ध करती है –

मान लें कि पूर्णांक variables A में 10 हैं और variables B में 20 हैं, तो –

OperatorDescriptionExample
+ (Addition)Adds values on either side of the operator.A + B will give 30
– (Subtraction)Subtracts right-hand operand from left-hand operand.A – B will give -10
* (Multiplication)Multiplies values on either side of the operator.A * B will give 200
/ (Division)Divides left-hand operand by right-hand operand.B / A will give 2
% (Modulus)Divides left-hand operand by right-hand operand and returns remainder.B % A will give 0
++ (Increment)Increases the value of operand by 1.B++ gives 21
— (Decrement)Decreases the value of operand by 1.B– gives 19

रिलेशनल ऑपरेटर (Relational Operators in Hindi)

जावा भाषा द्वारा समर्थित निम्नलिखित रिलेशनल ऑपरेटर हैं।

मान लें कि variables A में 10 हैं और variables B में 20 हैं, तो –

OperatorDescriptionExample
== (equal to)Checks if the values of two operands are equal or not, if yes then condition becomes true.(A == B) is not true.
!= (not equal to)Checks if the values of two operands are equal or not, if values are not equal then condition becomes true.(A != B) is true.
> (greater than)Checks if the value of left operand is greater than the value of right operand, if yes then condition becomes true.(A > B) is not true.
< (less than)Checks if the value of left operand is less than the value of right operand, if yes then condition becomes true.(A < B) is true.
>= (greater than or equal to)Checks if the value of left operand is greater than or equal to the value of right operand, if yes then condition becomes true.(A >= B) is not true.
<= (less than or equal to)Checks if the value of left operand is less than or equal to the value of right operand, if yes then condition becomes true.(A <= B) is true.

बिटवाइज़ ऑपरेटर (Bitwise Operators in Hindi)

जावा कई बिटवाइज़ ऑपरेटरों को परिभाषित करता है, जिन्हें पूर्णांक प्रकारों, लंबे, इंट, शॉर्ट, चार और बाइट पर लागू किया जा सकता है।

बिटवाइज़ ऑपरेटर बिट्स पर काम करता है और बिट-बाय-बिट ऑपरेशन करता है। मान लीजिए कि a = 60 और b = 13; अब बाइनरी फॉर्मेट में वे इस प्रकार होंगे –

a = 0011 1100

b = 0000 1101

—————–

a&b = 0000 1100

a|b = 0011 1101

a^b = 0011 0001

~a  = 1100 0011

निम्न तालिका बिटवाइज़ ऑपरेटरों को सूचीबद्ध करती है –

मान लें कि पूर्णांक variables A में 60 है और variables B में 13 है तो –

OperatorDescriptionExample
& (bitwise and)Binary AND Operator copies a bit to the result if it exists in both operands.(A & B) will give 12 which is 0000 1100
| (bitwise or)Binary OR Operator copies a bit if it exists in either operand.(A | B) will give 61 which is 0011 1101
^ (bitwise XOR)Binary XOR Operator copies the bit if it is set in one operand but not both.(A ^ B) will give 49 which is 0011 0001
~ (bitwise compliment)Binary Ones Complement Operator is unary and has the effect of ‘flipping’ bits.(~A ) will give -61 which is 1100 0011 in 2’s complement form due to a signed binary number.
<< (left shift)Binary Left Shift Operator. The left operands value is moved left by the number of bits specified by the right operand.A << 2 will give 240 which is 1111 0000
>> (right shift)Binary Right Shift Operator. The left operands value is moved right by the number of bits specified by the right operand.A >> 2 will give 15 which is 1111
>>> (zero fill right shift)Shift right zero fill operator. The left operands value is moved right by the number of bits specified by the right operand and shifted values are filled up with zeros.A >>>2 will give 15 which is 0000 1111

लॉजिकल ऑपरेटर (Logical Operators in Hindi)

निम्न तालिका तार्किक ऑपरेटरों को सूचीबद्ध करती है –

मान लें कि बूलियन variables A सत्य रखता है और variables B असत्य रखता है, तो –

OperatorDescriptionExample
&& (logical and)Called Logical AND operator. If both the operands are non-zero, then the condition becomes true.(A && B) is false
|| (logical or)Called Logical OR Operator. If any of the two operands are non-zero, then the condition becomes true.(A || B) is true
! (logical not)Called Logical NOT Operator. Use to reverses the logical state of its operand. If a condition is true then Logical NOT operator will make false.!(A && B) is true

असाइनमेंट ऑपरेटर (Assignment Operators in Hindi)

निम्नलिखित जावा भाषा द्वारा समर्थित असाइनमेंट ऑपरेटर हैं –

OperatorDescriptionExample
=Simple assignment operator. Assigns values from right side operands to left side operand.C = A + B will assign value of A + B into C
+=Add AND assignment operator. It adds right operand to the left operand and assign the result to left operand.C += A is equivalent to C = C + A
-=Subtract AND assignment operator. It subtracts right operand from the left operand and assign the result to left operand.C -= A is equivalent to C = C – A
*=Multiply AND assignment operator. It multiplies right operand with the left operand and assign the result to left operand.C *= A is equivalent to C = C * A
/=Divide AND assignment operator. It divides left operand with the right operand and assign the result to left operand.C /= A is equivalent to C = C / A
%=Modulus AND assignment operator. It takes modulus using two operands and assign the result to left operand.C %= A is equivalent to C = C % A
<<=Left shift AND assignment operator.C <<= 2 is same as C = C << 2
>>=Right shift AND assignment operator.C >>= 2 is same as C = C >> 2
&=Bitwise AND assignment operator.C &= 2 is same as C = C & 2
^=bitwise exclusive OR and assignment operator.C ^= 2 is same as C = C ^ 2
|=bitwise inclusive OR and assignment operator.C |= 2 is same as C = C | 2

मिसलेनियस ऑपरेटर (Miscellaneous Operators in Hindi)

जावा लैंग्वेज द्वारा समर्थित कुछ अन्य ऑपरेटर हैं।

कंडीशनल ऑपरेटर Conditional Operator ( ? : )

कंडीशनल ऑपरेटर को टर्नरी ऑपरेटर के रूप में भी जाना जाता है। इस ऑपरेटर में तीन ऑपरेंड होते हैं और इसका उपयोग बूलियन एक्सप्रेशन का मूल्यांकन करने के लिए किया जाता है। ऑपरेटर का लक्ष्य यह तय करना है कि वेरिएबल को कौन सा मान असाइन किया जाना चाहिए। operator को लिखा जाता है

variable x = (expression) ? value if true : value if false

निम्नलिखित एक उदाहरण है –

public class Test {

   public static void main(String args[]) {

      int a, b;

      a = 10;

      b = (a == 1) ? 20: 30;

      System.out.println( “Value of b is : ” +  b );

      b = (a == 10) ? 20: 30;

      System.out.println( “Value of b is : ” + b );

   }

}

यह निम्नलिखित परिणाम देगा –

Example

Output

Value of b is : 30

Value of b is : 20

ऑपरेटर का उदाहरण

इस ऑपरेटर का उपयोग केवल ऑब्जेक्ट रेफरेंस वेरिएबल्स के लिए किया जाता है। ऑपरेटर यह जाँचता है कि वस्तु किसी विशेष प्रकार (वर्ग प्रकार या इंटरफ़ेस प्रकार) की है या नहीं। उदाहरण ऑपरेटर को – के रूप में लिखा जाता है

(Object reference variable ) instanceof  (class/interface type)

यदि ऑपरेटर के बाईं ओर वेरिएबल द्वारा निर्दिष्ट वस्तु दाईं ओर वर्ग/इंटरफ़ेस प्रकार के लिए IS-A चेक पास करती है, तो परिणाम सत्य होगा। निम्नलिखित एक उदाहरण है –

Example

public class Test {

   public static void main(String args[]) {

      String name = “James”;

      // following will return true since name is type of String

      boolean result = name instanceof String;

      System.out.println( result );

   }

}

यह निम्नलिखित परिणाम देगा –

Output

true

यह ऑपरेटर अभी भी सही लौटेगा यदि तुलना की जा रही वस्तु दाईं ओर के प्रकार के साथ संगत असाइनमेंट है। निम्नलिखित एक और उदाहरण है –

Example

class Vehicle {}

public class Car extends Vehicle {

   public static void main(String args[]) {

      Vehicle a = new Car();

      boolean result =  a instanceof Car;

      System.out.println( result );

   }

}

यह निम्नलिखित परिणाम देगा –

Output

true

जावा ऑपरेटरों की प्राथमिकता (Precedence of Java Operators)

ऑपरेटर वरीयता एक अभिव्यक्ति में शब्दों के समूहीकरण को निर्धारित करती है। यह प्रभावित करता है कि अभिव्यक्ति का मूल्यांकन कैसे किया जाता है। कुछ ऑपरेटरों की दूसरों की तुलना में उच्च प्राथमिकता होती है; उदाहरण के लिए, गुणन संकारक की अतिरिक्त संकारक की तुलना में उच्च प्राथमिकता है –

उदाहरण के लिए, x = 7 + 3 * 2; यहाँ x को 13 निर्दिष्ट किया गया है, 20 नहीं क्योंकि ऑपरेटर * की + से उच्च प्राथमिकता है, इसलिए इसे पहले 3 * 2 से गुणा किया जाता है और फिर 7 में जोड़ा जाता है।

यहां उच्चतम वरीयता वाले ऑपरेटर तालिका के शीर्ष पर दिखाई देते हैं, सबसे कम वाले नीचे दिखाई देते हैं। एक अभिव्यक्ति के भीतर उच्च प्राथमिकता वाले ऑपरेटरों का पहले मूल्यांकन किया जाएगा।

CategoryOperatorAssociativity
Postfixexpression++ expression–Left to right
Unary++expression –-expression +expression –expression ~ !Right to left
Multiplicative* / %Left to right
Additive+ –Left to right
Shift<< >> >>>Left to right
Relational< > <= >= instanceofLeft to right
Equality== !=Left to right
Bitwise AND&Left to right
Bitwise XOR^Left to right
Bitwise OR|Left to right
Logical AND&&Left to right
Logical OR||Left to right
Conditional?:Right to left
Assignment= += -= *= /= %= ^= |= <<= >>= >>>=Right to left

हम उम्मीद करते है कि आपको “जावा बेसिक ऑपरेटर्स (Java Basic Operators)” से सम्बंधित जानकारी हिंदी में समझ में आयी होंगी यदि आपको बताई गई जानकारी अच्छी लगी हो तो अपने दोस्तों में ऐसे शेयर करे जिससे उनकी भी हेल्प हो सके धन्यवाद!

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Subject Topics

Latest Topic

lang="hi-IN"