Changes between Version 55 and Version 56 of j2p
- Timestamp:
- 12/07/23 12:18:24 (11 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
j2p
v55 v56 74 74 75 75 ==== 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:76 Inner 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: 77 77 * The useful variant of inner class is the non-static inner class. This class can access fields in the enclosing class. 78 78 * Python does not support accessing fields of the enclosing class unless some tricks are applied. But these tricks would break uniformity of constructors.