Commit ce0fdeef authored by gu-jinli1118's avatar gu-jinli1118
Browse files

666

parent 984d6be4
package com.jsh.erp.utils;
public class shape {
public double area(int length,int width) {
public class Shape {
public double area(double length,double width) {
System.out.println ("Shape~area");
return length*width;
}
}
package com.jsh.erp.utils;
public class triangle extends shape {
public class Triangle extends Shape {
@Override
public double area(int length,int width) {
public double area(double length,double width) {
System.out.println ("triangle ~area");
return 1.0/2*length*width;
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment