摘要: 首先看这种写法 1 <?php 2 abstract class A 3 { 4 public static function create(): A 5 { 6 return new self(); 7 } 8 } 9 class B extends A 10 { 11 } 12 B::creat 阅读全文
posted @ 2020-11-17 23:14 九鹤 阅读(129) 评论(0) 推荐(0) 编辑