Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:124985 X-Original-To: internals@lists.php.net Delivered-To: internals@lists.php.net Received: from php-smtp4.php.net (php-smtp4.php.net [45.112.84.5]) by qa.php.net (Postfix) with ESMTPS id DA0051A00B7 for ; Fri, 16 Aug 2024 16:46:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1723826922; bh=0CbjgRm7vtc+zTxRmEnazPMEgDq2x2bOJ2vibXVhCCM=; h=Subject:From:In-Reply-To:Date:Cc:References:To:From; b=E5e+OlQyjXi1clemrxkjLGiTP3PWgm7y4FqBB5a/4PQDscXVw/6vL2a1tTPFdUgpG e0Y2oGn6AgZvr5xWqhpQz2BhGm34vzmKi4QPklYx3Swj5TxlU7lvce7vjQVKPtuJZc f6h+2OlMECPFtD3bgyxnQscWz9ltB+IjQuBL0tFPcpROskCFf4kbDcBp+86FG9SeC8 i9A1wMa9UkO8MTxpDGjiPSAIRQ299hgu7FAH+/i8fKccqb1AfqWPIvYVA/uTytPjas bPE7H5uQa7NiCdzCcY1NzMnekwUyJISGMAvw4LAetMbsdrRa/Fl9UkeRrBXsn6oa/V cxvjqVgGdlrBg== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 1AE9118007A for ; Fri, 16 Aug 2024 16:48:42 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-13) on php-smtp4.php.net X-Spam-Level: X-Spam-Status: No, score=0.6 required=5.0 tests=BAYES_50,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,DMARC_MISSING,SPF_HELO_NONE, SPF_PASS autolearn=no autolearn_force=no version=4.0.0 X-Spam-Virus: No X-Envelope-From: Received: from nebula.zort.net (nebula.zort.net [96.241.205.3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Fri, 16 Aug 2024 16:48:41 +0000 (UTC) Received: from smtpclient.apple (pulsar.zort.net [96.241.205.6]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by nebula.zort.net (Postfix) with ESMTPSA id 96E24201362E2; Fri, 16 Aug 2024 12:46:53 -0400 (EDT) DKIM-Filter: OpenDKIM Filter v2.11.0 nebula.zort.net 96E24201362E2 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=zort.net; s=zort; t=1723826813; bh=bJEYCJ+CWGU3Y2jT0IbxNuHEPa/3b9m6z5b05f8JSRE=; h=Subject:From:In-Reply-To:Date:Cc:References:To:From; b=E4GbfE2ctxx/ST4G6VIYV+JKk/vHtOwxZbHw7K241+eX/K0hrZ9UNrqY3NdN/V63Y BZFeo8oh+7eYTEOodXGnPJE3yefba6vtn5FTWwc2BM/25QyI3WBUR6eFg43oooPare phgdk7qJ8GJjv1yywPIyLl/Nqa1xZyuMssj1klo8= Content-Type: text/plain; charset=us-ascii Precedence: bulk list-help: list-post: List-Id: internals.lists.php.net x-ms-reactions: disallow Mime-Version: 1.0 (Mac OS X Mail 16.0 \(3776.700.51\)) Subject: Re: [PHP-DEV] [DISCUSSION] Class Constant Enums? In-Reply-To: <79817594-f9a9-4f02-b48a-4bf39e4372e6@app.fastmail.com> Date: Fri, 16 Aug 2024 12:46:43 -0400 Cc: php internals Content-Transfer-Encoding: quoted-printable Message-ID: References: <34548342633f1d87b2fc77c643bd895a18f71b66.camel@ageofdream.com> <79817594-f9a9-4f02-b48a-4bf39e4372e6@app.fastmail.com> To: Larry Garfield X-Mailer: Apple Mail (2.3776.700.51) From: jbafford@zort.net (John Bafford) On Aug 16, 2024, at 10:17, Larry Garfield = wrote: >=20 > I would have to research to see if other languages did this, but one = option would be to allow an inner class to extend an outer class even if = it's final, which would essentially give us sealed classes for free: >=20 > final class Outer > { > class InnerA extends Outer {} > class InnerB extends Outer {} > class InnerC extends Outer {} > } >=20 > // But this is still not OK: > class Sibling extends Outer {} >=20 > Note: I have no idea how difficult/complicated this would be, but I = would be in favor of exploring it. >=20 > --Larry Garfield Swift allows nested classes to extend their parent. It does not allow = nested classes to extend a final parent. Visibility modifiers can be = applied and work as expected. Basically, types also function as the = equivalent of a namespace. More broadly, any type can be nested in any = other type, so you could certainly do something weird like: ``` class A { enum E { class C: A {} =09 case a(A) case c(C) } } let e =3D A.E.c(A.E.C()) ``` However, you could implement your sealed class example by having a = private constructor: ``` class Parent { final class Child : Parent { override init() { //within lexical scope of Parent, so = can see Parent's private members super.init() } } =09 private init() {} } let parent =3D Parent() //'Parent' initializer is inaccessible due to = 'private' protection level let child =3D Parent.Child() //ok ``` Swift also has a fileprivate visibility, so the same could be = accomplished with a fileprivate init on Parent with a non-nested Child = in the same file. -John=