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

软件工程

开发平台:

Java

  1. package com.company.section2;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  * 美女的实现类
  6.  */
  7. public class PettyGirl implements IGoodBodyGirl,IGreatTemperamentGirl {
  8. private String name;
  9. //美女都有名字
  10. public PettyGirl(String _name){
  11. this.name=_name;
  12. }
  13. //脸蛋漂亮
  14. public void goodLooking() {
  15. System.out.println(this.name + "---脸蛋很漂亮!");
  16. }
  17. //气质要好
  18. public void greatTemperament() {
  19. System.out.println(this.name + "---气质非常好!");
  20. }
  21. //身材要好
  22. public void niceFigure() {
  23. System.out.println(this.name + "---身材非常棒!");
  24. }
  25. }