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

📄 thisdemo.java

📁 Java程序
💻 JAVA
字号:
class Point
{
protected int x,y;
 Point(int a,int b)
 {setPoint(a,b);}
 public void setPoint(int a,int b)
 {x=a;y=b;
 }
}
class Line extends Point
{protected int x,y;
 Line(int a,int b)
  { super(a,b);
   setLine(a,b);
  }
   public void setLine(int x,int y)
    {this.x=x+x;
     this.y=y+y;
    }
   public double length()
    {int x1=super.x,y1=super.y,x2=this.x,y2=this.y;
    return Math.sqrt((x2-x1)*(x2-x1)+(y2-y1)*(y2-y1));
    }
   public String toString()
     {
	return "直线两点:["+super.x+super.y+"]["+x+"."+y+"]直线长度:"+this.length();
     }
}
public class ThisDemo
{
	public static void main(String args[])
	{Line line=new Line(20,20);
	System.out.println("\n"+line.toString());
        }
}

⌨️ 快捷键说明

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