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

📄 ch9ex1.java

📁 JAVA程序设计 丁岳伟 彭敦陆编 高等教育出版社 第7---11章程序
💻 JAVA
字号:
class Soap{
  	private String s;
	public Soap(){
		System.out.println("Soap()");
    	s=new String("Constructed");
  	}
  	public String toString(){return s;}
}
class Bath{
  	private String s1=new String("Happy"),s2="Happy",s3,s4;
  	private Soap castille;//组合
  	private int i;double toy;
  	public Bath(){
    	System.out.println("Inside Bath()");
    	s3=new String("Joy");
    	i=47;toy =3.14;
    	castille =new Soap();
  	}
	public void display(){
    	if(s4==null)
      		s4=new String("Joy");
    	System.out.println("s1= :" +s1);
    	System.out.println("s2= :" +s2);
    	System.out.println("s3= :" +s3);
		System.out.println("s4= :" +s4);
    	System.out.println("i= :" +i);
    	System.out.println("toy= :"+toy);
    	System.out.println("castille= :"+castille);
  	}
}  
public class ch9ex1{
	public static void main(String[]args){
    	Bath b=new Bath();
    	b.display();
  	}
} 

⌨️ 快捷键说明

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