ابدأ بالتواصل مع الأشخاص وتبادل معارفك المهنية

أنشئ حسابًا أو سجّل الدخول للانضمام إلى مجتمعك المهني.

متابعة

How can you use a method local variable in a method local inner class?

user-image
تم إضافة السؤال من قبل himanshu mittal
تاريخ النشر: 2013/06/25
Zabeer Sultan
من قبل Zabeer Sultan , Senior Technical Lead , Happiestminds

We can use a method local variable in method local inner class only when the method local variable is final.
Only final variables can be accessed inside method local inner classes because JVM maintains a copy of the method local variables when the inner class object is created, so the final variable restriction is in place.

المزيد من الأسئلة المماثلة