⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 constructor_overloading.java

📁 JAVA程序设计课程中各章节的程序实例。
💻 JAVA
字号:
//Overloading constructor
class Box
{
	double width;
	double height;
	double depth;
	
	Box(double w, double h, double d)
	{
		width = w;
		height = h;
		depth = d; 
	}

	Box()
	{
		width = -1;
		height = -1;
		depth = -1;
	}

	Box(double len)
	{
		width = height = depth = len;
	}

	double volume()
	{
		return width*height*depth;
	}
}

class Constructor_overloading
{
	public static void main(String args[])
	{
		Box mybox1 = new Box(10,20,25);
		Box mybox2 = new Box();
		Box mycube = new Box(7);

		double vol;

		vol = mybox1.volume();
		System.out.println(vol);
		
		vol = mybox2.volume();
		System.out.println(vol);
		
		vol = mycube.volume();
		System.out.println(vol);
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -