IPhone.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:0k
源码类别:

软件工程

开发平台:

Java

  1. package com.company.section3;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  * 电话的接口
  6.  */
  7. public interface IPhone {
  8. //拨通电话
  9. public void dial(String phoneNumber);
  10. //通话
  11. public void call(Object o);
  12. //回应,只有自己说话而没有回应,那算啥?!
  13. public void answer(Object o);
  14. //通话完毕,挂电话
  15. public void huangup();
  16. }