Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

create a square class that inherits from rectangle.

public Square(double side) {
        super(side,side);   // width == height
        this.shapeName = "Square";
 }
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #create #square #class #inherits
ADD COMMENT
Topic
Name
6+9 =