Changes between Version 55 and Version 56 of j2p


Ignore:
Timestamp:
12/07/23 12:18:24 (11 months ago)
Author:
wouter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • j2p

    v55 v56  
    7474
    7575==== Inner classes
    76 Inner classes (classes inside classes) are **not supported**. You can not import, call or use inner classes. Inner classes can not be translated. This is for many reasons but the brief summary:
     76Inner classes (classes inside classes) are **not supported**. This includes anonymous inner classes. You can not import, call or use inner classes. Inner classes can not be translated. This is for many reasons but the brief summary:
    7777* The useful variant of inner class is the non-static inner class. This class can access fields in the enclosing class.
    7878* Python does not support accessing fields of the enclosing class unless some tricks are applied. But these tricks would break uniformity of constructors.