我有一个关于在 PHP 中扩展类的问题。
我在 php 网站上看到的示例在方法中只有 1 行代码...如果该方法有大量代码,是否相同?
如果这是基类:
class BaseClass {
public function WithWayTooMuchCode {
// like 100 lines of code here
}
}
如果我想使用相同的方法,我是否必须复制所有代码,但只更改 1 或 2 件事?
class MyOwnClass extends BaseClass {
public function WithWayTooMuchCode {
// like 100 lines of code here
// do I have to copy all of the other code and then add my code??
}
}
这对我来说似乎有点不干燥......