📄 bath.java.bak
字号:
// :c06:Bath.java
class Soap
{
private String s;
Soap()
{
System.out.println("Soap()");
s=new String("Constructed");
}
public String tostring(){return s;};
}
public class Bath
{
private String s1=new String("happy"),s2="Happy",s3,s4;
Soap castille;
int i;
float toy;
Bath()
{
System.out.println("Inside Bath()");
s3=new String("Joy");
i=47;
toy=3.14f;
castille=new Soap();
}
void Print()
{
if(s4==null)
s4=new String("Joy");
System.out.println("s1="+s1);
System.out.println("s2="+se2);
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 static void main(String [] args)
{
Bath b=new Bath();
b.Print();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -