<?php
interface IEmployee
   {
   		function working();
   }
   
   interface IDeveloper
   {
   		function Coding();
   }
   
   class Person implements IEmployee,IDeveloper
   {
   		function working()
   		{}
   		
   		function Coding(){}
   }
?>

 

相关文章:

  • 2022-12-23
  • 2021-12-13
  • 2021-11-23
  • 2021-10-01
  • 2022-01-01
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-05-24
  • 2022-12-23
  • 2021-11-27
  • 2022-01-22
  • 2022-01-05
相关资源
相似解决方案