首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

php中双冒号的施用

2012-12-21 
php中双冒号的应用?php ????class?Fruit ?? { ??????static?function?color() ?? ????{ ??????????return

php中双冒号的应用

              <?php ????class?Fruit ?? { ??????static?function?color() ?? ????{ ??????????return?"color"; ?? ????} ????????static?function?showColor() ?? ????{ ??????????echo?"show?"?.?self::color(); ?? ????} ??} ????class?Apple?extends?Fruit ?? { ??????static?function?color() ?? ????{ ??????????return?"red"; ?? ????} ??} ????Apple::showColor(); ??//?output?is?"show?color"! ?? ???>??

            ?

            程序运行结果:
            show color

热点排行