可以在Php中的抽象类中使用私有具体方法。

时间:2017-05-16 10:00:40

标签: php oop

是否可以在Php

中的抽象类中使用私有具体方法

1 个答案:

答案 0 :(得分:4)

TL; DR :是的,你可以。

Source: local data frame [48 x 4]
Groups: <by row>

# A tibble: 48 × 4
   musician  tools first_key second_key
*     <chr>  <chr>    <fctr>     <fctr>
1      John  voice         a          w
2      Paul guitar         a          w
3    George   bass         a          w
4     Ringo   drum         a          w
5      John  voice         b          w
6      Paul guitar         b          w
7    George   bass         b          w
8     Ringo   drum         b          w
9      John  voice         c          w
10     Paul guitar         c          w
# ... with 38 more rows

实例:https://3v4l.org/Efd5Q

但是私有方法只对该抽象类可见。这意味着它必须由抽象类中的其他一些具体方法使用(具有公共可见性保护)。

子课程将无法直接调用它。