java基础_类和对象.—5

Posted jakermk

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java基础_类和对象.—5相关的知识,希望对你有一定的参考价值。

首先,编写一个类ChongZai,该类中有3个重载的方法void print();其次,

再编写一个主类来测试ChongZai类的功能。

public class Chongzai1 {
//	首先,编写一个类ChongZai,该类中有3个重载的方法void print();其次,
//	再编写一个主类来测试ChongZai类的功能。
	int a,b,c;
	
	
	public int getA() {
		return a;
	}
	public void setA(int a) {
		this.a = a;
	}
	public int getB() {
		return b;
	}
	public void setB(int b) {
		this.b = b;
	}
	public int getC() {
		return c;
	}
	public void setC(int c) {
		this.c = c;
	}
	public double add (double a,double b)
	
	{
		return(a+b);
	}
	public double add (double a,double b,double c)
	
	{
		return (add(a, b)+c);
	}
	public double ji(double a,double b)
	{
		return a*b;
	}
	public double ji(double a,double b,double c)
	{
		return ji(a,b)*c;
	}
	public double h(double a,double b,double c)
	{
		return ji(a,b)+c;
	}
	
	
	
	public static void main(String [] args)
	   {
		   Chongzai1 c=new Chongzai1();
		 
		   System.out.println(c.add( 3, 4));
		   
		   System.out.println(c.add(3, 4, 5));
		   
		   System.out.println(c.ji(3, 4));
		   
		   System.out.println(c.ji(3, 4, 5));
		   
		   System.out.println(c.h(3, 4, 5));
	   }
}

  

 

以上是关于java基础_类和对象.—5的主要内容,如果未能解决你的问题,请参考以下文章

java基础_类和对象—1

java基础_类和对象—3

网易云课堂_Java语言程序设计进阶_第1周 类和对象_1分数

Java面向对象_类和对象

零基础学java-类和对象

一,面向对象基础