testthis.java
来自「实例精华」· Java 代码 · 共 30 行
JAVA
30 行
package mypro;
public class TestThis
{
TestThis()
{
this(5,7f);
}
TestThis(float f)
{
System.out.println("f="+f);
}
TestThis(int i,float f)
{
this(f);
System.out.println("i="+i);
System.out.println("i+f="+(i+f));
}
public static void main(String ar[])
{
TestThis this2=new TestThis();
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?