博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
例题4-10/4-11
阅读量:5107 次
发布时间:2019-06-13

本文共 638 字,大约阅读时间需要 2 分钟。

class People{

 double getArea(double x,int y){
  return x*y;
 }
 int getArea(int x,double y){
  return (int)(x*y);
 }
 double getArea(float x,float y,float z){
  return(x*x+y*y+z*z)*2.0;
 }
}
public class Example4_10{
   public static void main(String args[]){
    People zhang=new People();
    System.out.println("面积:"+zhang.getArea(10,3.88));
    System.out.println("面积:"+zhang.getArea(10,0.8));
   }
  }

public class Tom{

 int leg;
 Tom(int n){
  this.cry();
  leg=n;
  this.cry();
 }
 void cry(){
  System.out.println("我是Tom,我现在有"+leg+"条腿");
 }
 public static void main(String args[]){
  Tom cat=new Tom(4);
 }

转载于:https://www.cnblogs.com/wangmengran/archive/2013/04/14/3020750.html

你可能感兴趣的文章
StringBuffer是字符串缓冲区
查看>>
hihocoder1187 Divisors
查看>>
Azure 托管镜像和非托管镜像对比
查看>>
js window.open 参数设置
查看>>
032. asp.netWeb用户控件之一初识用户控件并为其自定义属性
查看>>
Ubuntu下安装MySQL及简单操作
查看>>
前端监控
查看>>
clipboard.js使用方法
查看>>
移动开发平台-应用之星app制作教程
查看>>
leetcode 459. 重复的子字符串(Repeated Substring Pattern)
查看>>
伪类与超链接
查看>>
centos 7 redis-4.0.11 主从
查看>>
博弈论 从懵逼到入门 详解
查看>>
永远的动漫,梦想在,就有远方
查看>>
springboot No Identifier specified for entity的解决办法
查看>>
慵懒中长大的人,只会挨生活留下的耳光
查看>>
"远程桌面连接--“发生身份验证错误。要求的函数不受支持
查看>>
【BZOJ1565】 植物大战僵尸
查看>>
视频:"我是设计师"高清完整版Plus拍摄花絮
查看>>
VALSE2019总结(4)-主题报告
查看>>