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

📄 errorconstructors.java

📁 这是一些java小程序的源码
💻 JAVA
字号:
//c3:ErrorConstructors.java
//author:ZhangHongbin 
//This program is protected by copyright laws.
//Error constructors.  
class A
{
}
class B
{
	B(int i)
	{
	}
}

class C
{
	C()
	{
	}
}	
public class ErrorConstructors
{
	public static void main(String[] args) 
	{
		A a1=new A(3);
		//A a0=new A();
		B b1=new B();
		//B b0=new B(3);
		C c1=new C(3);
		//C c0=new C();
		
	} 
} 

⌨️ 快捷键说明

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