rfc:static_class_constructor
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
rfc:static_class_constructor [2015/04/13 13:21] – Initial draft v0.1 deroetzi | rfc:static_class_constructor [2025/04/03 13:08] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== PHP RFC: Static Class Constructor ====== | ====== PHP RFC: Static Class Constructor ====== | ||
- | * Version: 0.1 | + | * Version: 0.2 |
* Date: 2015-04-13 | * Date: 2015-04-13 | ||
* Author: Johannes Ott < | * Author: Johannes Ott < | ||
- | * Status: | + | * Status: |
* First Published at: http:// | * First Published at: http:// | ||
Line 284: | Line 284: | ||
In this section I will try to summarize all discussion points and will try to figure out how in my personal opinion they really touch the proposal or not. | In this section I will try to summarize all discussion points and will try to figure out how in my personal opinion they really touch the proposal or not. | ||
- | 1. A argument I read several times is that within being inside the static context there could be some " | + | ==== 1. Crucial code and complexitiy argument ==== |
+ | |||
+ | An argument I read several times is that within being inside the static context there could be some " | ||
- First of all I used words like " | - First of all I used words like " | ||
Line 292: | Line 294: | ||
- But as I am an instructor for beginners for several years I agree to the fact that the concept of static-context is one of the concepts in oop-programming which seems to be really hard to understand with all its side-effects to beginners. A suggestion, which may help is to create an extra documentation page about static context with a DOs and DONTs list on it to help everyone to get familiar with this concept. But as being a common problem of static-context I think that should not be part of this proposal. The documentation of the static class constructor can then although refer to this page. | - But as I am an instructor for beginners for several years I agree to the fact that the concept of static-context is one of the concepts in oop-programming which seems to be really hard to understand with all its side-effects to beginners. A suggestion, which may help is to create an extra documentation page about static context with a DOs and DONTs list on it to help everyone to get familiar with this concept. But as being a common problem of static-context I think that should not be part of this proposal. The documentation of the static class constructor can then although refer to this page. | ||
- | 2. Possibility of inheritance | + | ==== 2. Inheritance |
A class should have as less dependencies to another as possible. To give the possibility to inherit the class constructor will produce a huge amount of relationships not only between the superclass and it's subclasses but although between each subclass. For that reason this is no suitable feature of a static class constructor in my point of view. | A class should have as less dependencies to another as possible. To give the possibility to inherit the class constructor will produce a huge amount of relationships not only between the superclass and it's subclasses but although between each subclass. For that reason this is no suitable feature of a static class constructor in my point of view. | ||
Line 331: | Line 333: | ||
</ | </ | ||
- | 3. How the error and exception | + | ==== 3. Error and Exception |
See open issues section for this topic. | See open issues section for this topic. | ||
- | 4. Need of a class destructor | + | ==== 4. Need of a class destructor to handle unload order dependencies |
- The only order dependency between class A and class B should be an usage dependency either class B extends A or A is used static or non-static inside class B. In both cases as I can see for now, the language itself should do already everything correct by not unloading class A before class B, for doing unload by reverse creation time. | - The only order dependency between class A and class B should be an usage dependency either class B extends A or A is used static or non-static inside class B. In both cases as I can see for now, the language itself should do already everything correct by not unloading class A before class B, for doing unload by reverse creation time. | ||
Line 343: | Line 345: | ||
- If someone can give me a suitable other example, I will think about this again. Until then this is just a possible future scope feature for me. | - If someone can give me a suitable other example, I will think about this again. Until then this is just a possible future scope feature for me. | ||
- | 5. Using explicit close feature on an example ResourcesPool class to close all opened resources (like ExamplePool:: | + | ==== 5. Close method of unused ResourcesPool ==== |
+ | |||
+ | Using explicit close feature on an example ResourcesPool class to close all opened resources (like ExamplePool:: | ||
- That is partly true, if called on a never used before Pool it will make an " | - That is partly true, if called on a never used before Pool it will make an " | ||
Line 349: | Line 353: | ||
- And for still being inside the user-code phase and not in the shutdown phase of the run nothing will break, by this " | - And for still being inside the user-code phase and not in the shutdown phase of the run nothing will break, by this " | ||
- | 6. Everywhere you have to store a state of something you should use an instance instead of a class, by using for example a singleton pattern. | + | ==== 6. Stateful things should be handled in instance not in class ==== |
+ | |||
+ | Everywhere you have to store a state of something you should use an instance instead of a class, by using for example a singleton pattern. | ||
- As I already tried to explain in introduction section the static properties are the state of the class. If the explained pattern always would be true the static context would be obsolete. | - As I already tried to explain in introduction section the static properties are the state of the class. If the explained pattern always would be true the static context would be obsolete. |
rfc/static_class_constructor.1428931310.txt.gz · Last modified: 2025/04/03 13:08 (external edit)