面向对象
已收录文章:2篇
-
文章 · php教程 | 4天前 | 面向对象 · PHP · PHP8.4 · Property Hooks · 代码重构 · PHP教程 Getter PHP 8.4 Property Hooks setter本文围绕 PHP 8.4 Property Hooks 讲清它解决什么问题、旧 getter/setter 写法会受到哪些影响、迁移时怎样控制风险,并给出商品模型的最小验证代码。464 收藏
-
匿名字段初始化 package main import "fmt" type Person struct { name string //名字 sex byte //性别 age int //年龄 } type Student struct { Person //只有类型,没有名字,匿名字段,继承了Person的成员 id int add127 收藏