nullpointerexception पर टैग किए गए जवाब

जब कोई एप्लिकेशन किसी ऑब्जेक्ट की आवश्यकता होती है, तो null का उपयोग करने का प्रयास करने पर जावा अपवाद को फेंक दिया जाता है।

5
java.lang.NullPointerException: आईडी के साथ आवश्यक दृश्य गुम:
एंड्रॉइड स्टूडियो 3.6 एप्लिकेशन में / build.gradle: android { viewBinding.enabled = true यहाँ मेरा xml: <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent"> <androidx.constraintlayout.widget.ConstraintLayout android:id="@+id/bluetoothBottonMainContainer" android:layout_width="0dp" android:layout_height="104dp" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent"> <View android:id="@+id/viewPointNotSelect" android:layout_width="16dp" android:layout_height="16dp" android:background="@drawable/circle_transparent" app:layout_constraintBottom_toBottomOf="@+id/separator" app:layout_constraintEnd_toStartOf="@+id/separator" app:layout_constraintTop_toTopOf="parent" /> और एक और एक्सएमएल unclude prev। xml: <androidx.constraintlayout.widget.ConstraintLayout android:id="@+id/bottonContainer" android:layout_width="0dp" …

1
मान निर्दिष्ट करते समय विषम जावा टर्नरी व्यवहार। ऐसा होने के लिए पर्दे के पीछे जावा क्या कर रहा है?
कुछ दिनों पहले, मैं एक आकर्षक परिदृश्य में भाग गया कि मुझे कोई प्रलेखन कैसे या क्यों नहीं मिल रहा है जावा निम्नलिखित होने देता है। (यह स्निपेट बग का एक सरलीकृत रूप है।) @Test public void test() { boolean bool = false; Integer intVal = Integer.valueOf(5); Long longVal = …
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.