Python Forum
can Inner Class reference the Outer Class's static variable?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
can Inner Class reference the Outer Class's static variable?
#7
Unlike inner class, a static nested class cannot access the member variables of the outer class. It is because the static nested class doesn't require you to create an instance of the outer class. OuterClass. NestedClass obj new OuterClass.We can not have a « url snipped » static method in a nested inner class because an inner class is implicitly associated with an object of its outer class so it cannot define any static method for itself. For example, the following program doesn't compile.
Gribouillis write Jul-01-2022, 07:56 AM:
Offsite link promotion snipped. Pleas read What to NOT include in a post.
Reply


Messages In This Thread
RE: can Inner Class reference the Outer Class's static variable? - by SharonDutton - Jul-01-2022, 06:34 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [split] Class and methods ebn852_pan 3 251 May-15-2024, 06:35 AM
Last Post: ebn852_pan
  [SOLVED] [listbox] Feed it with dict passed to class? Winfried 3 239 May-13-2024, 05:57 AM
Last Post: Larz60+
  Class and methods Saida2024 2 242 May-13-2024, 04:04 AM
Last Post: deanhystad
  How does this code create a class? Pedroski55 6 594 Apr-21-2024, 06:15 AM
Last Post: Gribouillis
  Pandas Outer merge skollu826 2 269 Apr-20-2024, 06:28 PM
Last Post: deanhystad
  class definition and problem with a method HerrAyas 2 325 Apr-01-2024, 03:34 PM
Last Post: HerrAyas
  Printing out incidence values for Class Object SquderDragon 3 371 Apr-01-2024, 07:52 AM
Last Post: SquderDragon
  class and runtime akbarza 4 471 Mar-16-2024, 01:32 PM
Last Post: deanhystad
  Operation result class SirDonkey 6 629 Feb-25-2024, 10:53 AM
Last Post: Gribouillis
  The function of double underscore back and front in a class function name? Pedroski55 9 811 Feb-19-2024, 03:51 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020