rfc:static_constructor
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
rfc:static_constructor [2024/06/18 21:45] – erickcomp | rfc:static_constructor [2024/06/19 12:22] (current) – Clarifying exception handling erickcomp | ||
---|---|---|---|
Line 4: | Line 4: | ||
* Date: 2024-06-08 | * Date: 2024-06-08 | ||
* Author: Erick de Azevedo Lima < | * Author: Erick de Azevedo Lima < | ||
- | * Status: | + | * Status: |
* Target Version: PHP 8.4 | * Target Version: PHP 8.4 | ||
- | * Implementation: | + | * Implementation: |
* First Published at: https:// | * First Published at: https:// | ||
Line 38: | Line 38: | ||
// could get it from config, database or whatever | // could get it from config, database or whatever | ||
self:: | self:: | ||
- | | ||
} | } | ||
| | ||
Line 44: | Line 43: | ||
} | } | ||
- | |||
- | $c = new MyClass(scheduledDate: | ||
- | |||
- | var_dump($c); | ||
</ | </ | ||
Line 83: | Line 78: | ||
// could get it from config, database or whatever | // could get it from config, database or whatever | ||
self:: | self:: | ||
- | | ||
} | } | ||
| | ||
Line 91: | Line 85: | ||
// Boom! getMinDate does not check if MyClass:: | // Boom! getMinDate does not check if MyClass:: | ||
echo MyClass:: | echo MyClass:: | ||
- | |||
- | $c = new MyClass(scheduledDate: | ||
var_dump($c); | var_dump($c); | ||
Line 104: | Line 96: | ||
===== Previous RFC on this subject ===== | ===== Previous RFC on this subject ===== | ||
- | There was a previous attempt to create an RFC for static constructors, | + | There was a previous attempt to create an RFC for static constructors, |
- | <https:// | + | |
Line 200: | Line 191: | ||
This RFC does not intend to promote the indiscriminate usage of static properties but rather to provide a way to properly initialize them when they are useful. | This RFC does not intend to promote the indiscriminate usage of static properties but rather to provide a way to properly initialize them when they are useful. | ||
- | ==== Implementation on other programming languages ==== | + | ===== Implementation on other programming languages |
- | === Java === | + | ==== Java ==== |
Java does not have a so-called static constructor, | Java does not have a so-called static constructor, | ||
- | == 1 - < | + | === 1 - static blocks: |
- | <code>java | + | <code java> |
import java.util.*; | import java.util.*; | ||
import java.lang.*; | import java.lang.*; | ||
Line 227: | Line 218: | ||
} | } | ||
</ | </ | ||
- | == 2 - Initialization using method calls: == | + | === 2 - Initialization using method calls: |
- | <code>java | + | <code java> |
import java.util.*; | import java.util.*; | ||
import java.lang.*; | import java.lang.*; | ||
Line 248: | Line 239: | ||
} | } | ||
</ | </ | ||
+ | https:// | ||
- | < | + | ==== Kotlin |
- | + | ||
- | === Kotlin === | + | |
Kotlin, strictly speaking, does not offer static members/ | Kotlin, strictly speaking, does not offer static members/ | ||
- | <code>kotlin | + | <code kotlin> |
class Whatever { | class Whatever { | ||
companion object { | companion object { | ||
Line 271: | Line 261: | ||
</ | </ | ||
- | <https:// | + | https:// |
- | === C\# === | + | ==== C# ==== |
C# implements a mechanism called " | C# implements a mechanism called " | ||
- | = 1 - Static constructor is called at most one time by the CLR; = | + | |
- | = 2 - Static constructor is called before any instance constructor is invoked or member is accessed; | + | - Static constructor is called before any instance constructor is invoked or member is accessed; |
- | <code>csharp | + | <code csharp> |
using System; | using System; | ||
using System.Reflection; | using System.Reflection; | ||
Line 287: | Line 277: | ||
public class C1 | public class C1 | ||
{ | { | ||
- | public static int myVar; | + | |
- | + | ||
- | static C1() | + | static C1() |
- | { | + | { |
- | C1.initStaticProps(); | + | C1.initStaticProps(); |
- | Console.WriteLine(" | + | Console.WriteLine(" |
- | } | + | } |
- | + | ||
- | public static void initStaticProps() | + | public static void initStaticProps() |
- | { | + | { |
- | C1.myVar = 10; | + | C1.myVar = 10; |
- | Console.WriteLine(" | + | Console.WriteLine(" |
- | + | } | |
- | } | + | |
- | + | public static void test() | |
- | public static void test() | + | { |
- | { | + | Console.WriteLine(" |
- | Console.WriteLine(" | + | } |
- | } | + | |
} | } | ||
public class Program | public class Program | ||
{ | { | ||
- | public static void Main() | + | |
- | { | + | { |
- | /// Any reference to the C1 class will trigger the static constructor: | + | /// Any reference to the C1 class will trigger the static constructor: |
| | ||
- | // Reflection | + | |
- | //Type c1Type = typeof(C1); | + | //Type c1Type = typeof(C1); |
- | + | ||
- | // Instance constructor | + | // Instance constructor |
- | //var c = new C1(); | + | //var c = new C1(); |
- | + | ||
- | // Static method call | + | // Static method call |
- | // | + | // |
- | + | ||
- | // Property access | + | // Property access |
- | Console.WriteLine(" | + | Console.WriteLine(" |
- | } | + | } |
} | } | ||
</ | </ | ||
- | <https:// | + | https:// |
- | === C++ === | + | ==== C++ ==== |
Since its 2017 specification " | Since its 2017 specification " | ||
- | <code>c++ | + | <code c++> |
- | ====== | + | #include < |
- | ====== | + | #include < |
class Example { | class Example { | ||
Line 361: | Line 349: | ||
</ | </ | ||
- | === Swift === | + | ==== Swift ==== |
Just like C++, Swift allows properties to be initialized by the return values of closures: | Just like C++, Swift allows properties to be initialized by the return values of closures: | ||
- | <code>swift | + | <code swift> |
class Example { | class Example { | ||
static var myVar: Int = { | static var myVar: Int = { | ||
Line 388: | Line 376: | ||
The static constructor in this RFC supports two possible signatures: | The static constructor in this RFC supports two possible signatures: | ||
- | 1. < | + | 1. < |
- | 2. < | + | 2. < |
Similar to the C# implementation, | Similar to the C# implementation, | ||
+ | |||
+ | ===== Exception handling ===== | ||
+ | The current behavior allows exceptions to be thrown from within the static constructor, | ||
===== Implementation notes ===== | ===== Implementation notes ===== | ||
Line 398: | Line 389: | ||
* Even if the method were < | * Even if the method were < | ||
- | |||
===== Examples ===== | ===== Examples ===== | ||
- | = 1 - No code sharing to the child class: = | + | === 1 - No code sharing to the child class: |
<PHP> | <PHP> | ||
class MyClass | class MyClass | ||
Line 436: | Line 426: | ||
</ | </ | ||
- | = 2 - Sharing code to the child class: = | + | === 2 - Sharing code to the child class: |
<PHP> | <PHP> | ||
class MyClass1 | class MyClass1 | ||
Line 505: | Line 495: | ||
As per the voting RFC a yes/no vote with a 2/3 majority is needed for this proposal to be accepted. | As per the voting RFC a yes/no vote with a 2/3 majority is needed for this proposal to be accepted. | ||
- | Voting started on 2024-XX-XX and will end on 2024-XX-XX. | + | ===== Implementation ===== |
- | + | ||
- | <doodle title=" | + | https:// |
- | * Yes | + | |
- | * No | + | Note: This implementation still needs tests |
- | </doodle> | + | |
===== Future scope ===== | ===== Future scope ===== | ||
In case any use cases for early execution of the static constructor arise (such as during class load, as implemented in C#), an opt-in mechanism for even earlier initialization can be considered. | In case any use cases for early execution of the static constructor arise (such as during class load, as implemented in C#), an opt-in mechanism for even earlier initialization can be considered. | ||
- | |||
===== References ===== | ===== References ===== | ||
- | Composer' | + | Composer' |
Java's approach on " | Java's approach on " | ||
- | <https:// | + | https:// |
Kotlin' | Kotlin' | ||
- | <https:// | + | https:// |
C#'s static constructors: | C#'s static constructors: | ||
- | <https:// | + | https:// |
rfc/static_constructor.1718747143.txt.gz · Last modified: 2024/06/18 21:45 by erickcomp