Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:85812 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 3889 invoked from network); 14 Apr 2015 19:08:09 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 14 Apr 2015 19:08:09 -0000 Authentication-Results: pb1.pair.com smtp.mail=danack@basereality.com; spf=permerror; sender-id=unknown Authentication-Results: pb1.pair.com header.from=danack@basereality.com; sender-id=unknown Received-SPF: error (pb1.pair.com: domain basereality.com from 209.85.215.49 cause and error) X-PHP-List-Original-Sender: danack@basereality.com X-Host-Fingerprint: 209.85.215.49 mail-la0-f49.google.com Received: from [209.85.215.49] ([209.85.215.49:36467] helo=mail-la0-f49.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id AD/F7-47925-8956D255 for ; Tue, 14 Apr 2015 15:08:09 -0400 Received: by lagv1 with SMTP id v1so15853259lag.3 for ; Tue, 14 Apr 2015 12:08:05 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=qvGYNRLF1rJjbnwhUCSdIB7SIT4SEndDG04JEmOFHEg=; b=NFtEv5BfPA3XahPO4n/GmJI+u03iWHb5s9RNt+1EHCbfQFzev9INnxuzECqJbSpOBu ggnRBizYPpb4TWJLvRFepZFKb2aNhEs6pGFixskCLifusap42nFzMckdM04HWa7RKQsU PGSroX1yGZUR7pdkT6AEmmw6JVAQnJx5rX68TZvuqmodh4lWrfGoSGO3ytem2uxDzknd BxTXHsHGg3darbgPUUSkJY5rM1Lybf21nZQU1QQdBFtV7gsWdR2QIn1EKH3JXQ1/0Ou/ 8dHv92lQ1PYh4c2RlvYjRcie7ya3o7bNMLMQFUhEUGcKLvS+UEb89+1MxDkftSXN2WOQ Rtfw== X-Gm-Message-State: ALoCoQn851yYeL+cc6wEjZUijHHkmsoR4njy/o3n8XFb+CY2cVNV71nWJZPFQGr7GgXWGKKMVqA5 MIME-Version: 1.0 X-Received: by 10.152.28.5 with SMTP id x5mr20000627lag.112.1429038485358; Tue, 14 Apr 2015 12:08:05 -0700 (PDT) Received: by 10.25.162.146 with HTTP; Tue, 14 Apr 2015 12:08:05 -0700 (PDT) X-Originating-IP: [2.96.92.71] In-Reply-To: <53.B5.47925.6D05D255@pb1.pair.com> References: <53.B5.47925.6D05D255@pb1.pair.com> Date: Tue, 14 Apr 2015 19:08:05 +0000 Message-ID: To: Johannes Ott Cc: "internals@lists.php.net" Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] New RFC draft "static class constructor" From: danack@basereality.com (Dan Ackroyd) On 14 April 2015 at 17:39, Johannes Ott wrote: > Am 14.04.2015 um 16:33 schrieb Dan Ackroyd: > >> Here is some feedback then: >> Johannes Ott wrote: > But in the new draft (v0.4) I'm preparing at the moment I'll try to > formulate the trigger "first call" more common by comparing it to the > same trigger for __autoload function. Hmm. The language will need to be quite clear then - sometimes classes are autoloaded when they aren't instantiated. e.g. for just normal reflection of classes, the class is autoloaded if it isn't already present, or some people may autoload all the things ahead of time, to avoid any delay when responding to a request. Johannes Ott wrote: >Danack wrote: >> You missed the third and in my opinion correct one; the static >> initializer would only ever be called once. > I think this is suggested behaviour 1, isn't it? I read that section very differntly. "On recall of the static class constructor a fatal error is raised to ensure it is only called once and initialized before exception was thrown properties will not be reinitialized." I read that as it implies that it would be possible to call the static initializer again, and in that case a fatal error would be thrown. If the initializer is only ever called once, it would be clearer to say that as a 'positive' statement, as opposed to saying a 'negative' of what wouldn't be allowed - i.e. single statements are clearer than any kind of double-negative statements. Johannes Ott wrote: >Danack wrote: >> I think the RFC needs to be clearer in the specification of the order >> that static initialization is called in. > Because inheritance by using keyword > extends is already a first call to class A. tbh, it's quite likely that looking at Java or some other language that has static initializers and copying that behaviour for precedence could be the best choice. However the behaviour might not be mappable directly, due to differences in PHP's inheritance and class model, in particular the late static binding. class A { static function __staticInit() { static::foo(); } static function foo() { echo "This is A::foo\n"; } } class B extends A { static function foo() { echo "This is B::foo\n"; } } B::__staticInit(); //Output is 'This is B::foo' It's pretty easy to imagine some cases where there are circular dependencies....so the RFC would need to be precise about exactly what the rules are. cheers Dan