• 2022-05-31
    类Rectangle中,width和height称为( )变量或( )变量。 public class Rectangle{ int width; int height; public void show(){ System.out.println("宽:"+width",高:"+height); } }
  • 举一反三