Kotlin Tutorial
Kotlin Conditional Statements in Hindi (Kotlin if, else, else if, when)
Table of Contents
- परिचय
- कोटलिन में कंडीशनल स्टेटमेंट्स क्या हैं? (Conditional Statements in Kotlin in Hindi)
- कोटलिन कंडीशनल स्टेटमेंट्स की सूची (List of Kotlin Conditional Statements in Hindi)
- कोटलिन कंडीशनल स्टेटमेंट्स का उदाहरण
- if statement in Kotlin
- Kotlin if-else Statement
- Kotlin else-if Statement
- Kotlin when Statement
- Kotlin Inline if else
- Kotlin if else one line
- Kotlin null check if else
- Kotlin if-else-if Ladder Expression
- Kotlin Nested if Expression
- Kotlin Full Course Video for Beginners in Hindi [FREE]
Kotlin Full Course Video for Beginners in Hindi [FREE]
Kotlin Conditional Statements से संबंधित अक्सर पूछे जाने वाले प्रश्न
कोटलिन में conditional statement control structures हैं जो आपको कुछ conditional के आधार पर execute various code blocks करने की अनुमति देती हैं। कोटलिन में primary conditional statement हैं if, else if, and else।
हाँ, आप एक ही if स्टेटमेंट में कई शर्तों को संयोजित करने के लिए तार्किक ऑपरेटरों (&& के लिए AND, || के लिए OR) का उपयोग कर सकते हैं।
यदि condition पूरी नहीं होती है तो execute करने के लिए alternative code block प्रदान करने के लिए other statements का उपयोग किया जाता है। यह optional है, लेकिन अक्सर उन मामलों को संभालने के लिए उपयोग किया जाता है जहां condition false होती है।
यदि का उपयोग conditions के आधार पर branching के लिए किया जाता है, जबकि when एक अधिक versatile expression है जिसका उपयोग multiple conditions और complex matching के लिए किया जा सकता है। कई cases को निपटाने के लिए अक्सर when को प्राथमिकता दी जाती है।
Elvis operator (?:) का उपयोग एक वैरिएबल null होने पर default value प्रदान करने के लिए किया जाता है। यदि कोई Condition पूरी नहीं होती है तो फ़ॉलबैक Value प्रदान करने के लिए इसका उपयोग अक्सर conditional statements में किया जाता है।
हाँ, आप if statements को अन्य if statements के अंदर nest बना सकते हैं। यह आपको complex conditional logic को संभालने की अनुमति देता है, लेकिन excessive nesting code को कम readable बना सकता है।
अपने conditional statements को keep concise and organized आवश्यक है। Clear and descriptive variable and function names का उपयोग करें, अत्यधिक नेस्टिंग से बचें, और complex situationsके लिए जब expressions का उपयोग करने पर विचार करें।
कोटलिन में, आप वेन एक्सप्रेशन का उपयोग स्विच जैसी फ़ंक्शनैलिटी प्राप्त करने के लिए कर सकते हैं, जिससे आप एक वैल्यू को multiple cases के साथ मेल कर सकते हैं और matching cases के आधार पर कोड को चला सकते हैं।